-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (24 loc) · 1.03 KB
/
Cargo.toml
File metadata and controls
31 lines (24 loc) · 1.03 KB
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
[workspace]
resolver = "3"
members = [
"crates/cli",
"crates/contracts",
"crates/wallet-abi",
]
[workspace.package]
license = "MIT OR Apache-2.0"
edition = "2024"
[workspace.lints.clippy]
multiple_crate_versions = "allow"
[workspace.dependencies]
ring = "0.17.14"
sha2 = { version = "0.10.9", features = ["compress"] }
hex = "0.4.3"
tracing = { version = "0.1.41" }
minreq = { version = "2.14.1", features = ["https", "json-using-serde"]}
simplicityhl = { version = "0.4.0" }
[patch.crates-io]
lwk_common = { git = "https://github.com/Blockstream/lwk", rev = "4074c527fcc1268eb26953af397eecc6c1444293", package = "lwk_common" }
lwk_signer = { git = "https://github.com/Blockstream/lwk", rev = "4074c527fcc1268eb26953af397eecc6c1444293", package = "lwk_signer" }
lwk_simplicity = { git = "https://github.com/Blockstream/lwk", rev = "4074c527fcc1268eb26953af397eecc6c1444293", package = "lwk_simplicity" }
lwk_wollet = { git = "https://github.com/Blockstream/lwk", rev = "4074c527fcc1268eb26953af397eecc6c1444293", package = "lwk_wollet" }