forked from MutinyWallet/mutiny-node
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
23 lines (18 loc) · 994 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
[workspace]
resolver = "2"
members = [
"mutiny-core",
"mutiny-wasm",
]
# Tell `rustc` to optimize for small code size.
[profile.release.package.mutiny-core]
opt-level = "z"
[profile.release.package.mutiny-wasm]
opt-level = "z"
[patch.crates-io]
lightning-background-processor = { git = "https://github.com/utxostack/rust-lightning.git", branch = "fix-channel-manager-wasm32" }
lightning = { git = "https://github.com/utxostack/rust-lightning.git", branch = "fix-channel-manager-wasm32" }
lightning-types = { git = "https://github.com/utxostack/rust-lightning.git", branch = "fix-channel-manager-wasm32" }
lightning-invoice = { git = "https://github.com/utxostack/rust-lightning.git", branch = "fix-channel-manager-wasm32" }
lightning-rapid-gossip-sync = { git = "https://github.com/utxostack/rust-lightning.git", branch = "fix-channel-manager-wasm32" }
lightning-transaction-sync = { git = "https://github.com/utxostack/rust-lightning.git", branch = "fix-channel-manager-wasm32" }