forked from get10101/10101
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
48 lines (41 loc) · 2.15 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
[workspace]
members = ["coordinator", "maker", "mobile/native", "crates/*"]
default-members = [
"coordinator",
"maker",
"mobile/native",
"crates/bitmex-client",
"crates/bitmex-stream",
"crates/commons",
"crates/ln-dlc-node",
"crates/orderbook-client",
"crates/trade",
"crates/payout_curve",
]
resolver = "2"
[patch.crates-io]
# We should usually track the `p2pderivatives/feature/ln-dlc-channels[-10101]` branch.
#
# We are currently depending on one patch that will _not_ be merged into
# `p2pderivatives/rust-dlc#feature/ln-dlc-channels`: 4e104b4. This patch ensures backwards
# compatibility for 10101 through the `rust-lightning:0.0.116` upgrade. We will be able to drop it
# once all users have been upgraded and traded once.
dlc-manager = { git = "https://github.com/p2pderivatives/rust-dlc", rev = "f235bd2" }
dlc-messages = { git = "https://github.com/p2pderivatives/rust-dlc", rev = "f235bd2" }
dlc = { git = "https://github.com/p2pderivatives/rust-dlc", rev = "f235bd2" }
p2pd-oracle-client = { git = "https://github.com/p2pderivatives/rust-dlc", rev = "f235bd2" }
dlc-trie = { git = "https://github.com/p2pderivatives/rust-dlc", rev = "f235bd2" }
# We should usually track the `p2pderivatives/split-tx-experiment[-10101]` branch.
lightning = { git = "https://github.com/p2pderivatives/rust-lightning/", rev = "121bc324" }
lightning-background-processor = { git = "https://github.com/p2pderivatives/rust-lightning/", rev = "121bc324" }
lightning-transaction-sync = { git = "https://github.com/p2pderivatives/rust-lightning/", rev = "121bc324" }
lightning-net-tokio = { git = "https://github.com/p2pderivatives/rust-lightning/", rev = "121bc324" }
lightning-persister = { git = "https://github.com/p2pderivatives/rust-lightning/", rev = "121bc324" }
lightning-rapid-gossip-sync = { git = "https://github.com/p2pderivatives/rust-lightning/", rev = "121bc324" }
rust-bitcoin-coin-selection = { git = "https://github.com/p2pderivatives/rust-bitcoin-coin-selection" }
# Waiting for the next release.
xtra = { git = "https://github.com/Restioson/xtra/", rev = "d98393a" }
[profile.test.package.proptest]
opt-level = 3
[profile.test.package.rand_chacha]
opt-level = 3