-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (28 loc) · 1.08 KB
/
Cargo.toml
File metadata and controls
34 lines (28 loc) · 1.08 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
32
33
34
[workspace]
resolver = "3"
members = [
"crates/*",
]
exclude = ["examples/basic"]
[workspace.package]
license = "MIT"
edition = "2024"
[workspace.lints.clippy]
multiple_crate_versions = "allow"
[workspace.dependencies]
smplx-macros = { path = "./crates/macros", version = "0.0.3" }
smplx-build = { path = "./crates/build", version = "0.0.3" }
smplx-test = { path = "./crates/test", version = "0.0.3" }
smplx-regtest = { path = "./crates/regtest", version = "0.0.3" }
smplx-sdk = { path = "./crates/sdk", version = "0.0.3" }
smplx-std = { path = "./crates/simplex", version = "0.0.3" }
serde = { version = "1.0.228", features = ["derive"]}
hex = { version = "0.4.3" }
sha2 = { version = "0.10.9", features = ["compress"] }
thiserror = { version = "2.0.18" }
toml = { version = "0.9.8" }
minreq = { version = "2.14.1", features = ["https", "json-using-serde"] }
electrsd = { version = "0.29.0", features = ["legacy"] }
simplicityhl = { version = "0.5.0-rc.0" }
[patch.crates-io]
simplicity-sys = { git = "https://github.com/BlockstreamResearch/rust-simplicity", tag = "simplicity-sys-0.6.1" }