forked from chainwayxyz/clementine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
44 lines (39 loc) · 1.17 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
[workspace]
resolver = "2"
members = ["core", "circuits"]
[workspace.dependencies]
bitcoin = "0.32.0"
bitcoincore-rpc = "0.19.0"
hex = "0.4.3"
lazy_static = { version = "1.4.0", default-features = false }
sha2 = { version = "=0.10.8", default-features = false }
risc0-zkvm = "0.21.0"
serde = { version = "1.0", default-features = false }
serde_json = "1.0.108"
byteorder = "1.5.0"
secp256k1 = "0.29.0"
crypto-bigint = { version = "=0.5.5", default-features = false }
thiserror = "1.0.57"
tracing = { version = "0.1.40", default-features = false }
tracing-subscriber = { version = "0.3.18" }
tokio = "1.37.0"
jsonrpsee = "0.22.5"
async-trait = "0.1.79"
futures = "0.3.30"
dotenv = "0.15.0"
clap = "4.5.4"
toml = "0.8.12"
sqlx = { version = "0.7.4", default-features = false }
k256 = { version = "=0.13.3", default-features = false }
risc0-build = "0.21.0"
bitcoin-mock-rpc = { git = "https://github.com/chainwayxyz/bitcoin-mock-rpc", tag = "v0.0.5" }
# Always optimize; building and running the guest takes much longer without optimization.
[profile.dev]
opt-level = 3
[profile.dev.build-override]
opt-level = 3
[profile.release]
debug = 1
lto = true
[profile.release.build-override]
opt-level = 3