forked from vinteumorg/Floresta
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
32 lines (29 loc) · 894 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
[workspace]
resolver = "2"
members = [
"florestad",
"fuzz",
"crates/floresta",
"crates/floresta-chain",
"crates/floresta-cli",
"crates/floresta-common",
"crates/floresta-compact-filters",
"crates/floresta-electrum",
"crates/floresta-watch-only",
"crates/floresta-wire",
]
default-members = [
"florestad",
"crates/floresta",
"crates/floresta-chain",
"crates/floresta-cli",
"crates/floresta-common",
"crates/floresta-compact-filters",
"crates/floresta-electrum",
"crates/floresta-watch-only",
"crates/floresta-wire",
]
[patch."https://github.com/rust-lang/crates.io-index"]
# we use a fork of the bitcoin crate, which is not published on crates.io
# because it doesn't have utreexo support (yet?)
bitcoin = { git = "https://github.com/Davidson-Souza/rust-bitcoin", rev = "5a089f01131cfdf778769224ded792fd9194a334" }