-
Notifications
You must be signed in to change notification settings - Fork 14
/
Cargo.toml
38 lines (36 loc) · 1.26 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
[workspace]
resolver = "2"
members = ["core"] # TODO: Add "circuits" back later
[workspace.dependencies]
bitcoin = "0.32.2"
bitcoincore-rpc = "0.19.0"
hex = "0.4.3"
lazy_static = { version = "1.5.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.127"
# byteorder = "1.5.0"
secp256k1 = { version = "0.29.0", features = ["serde"] }
crypto-bigint = { version = "=0.5.5", features = ["rand_core"] }
thiserror = "1.0.63"
tracing = { version = "0.1.40", default-features = false }
tracing-subscriber = { version = "0.3.18", features = ["json"] }
tokio = "1.39.3"
jsonrpsee = "0.22.5"
async-trait = "0.1.81"
futures = "0.3.30"
clap = "4.5.16"
toml = "0.8.19"
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.11" }
musig2 = { version = "0.0.11", features = ["serde"] }
[profile.release]
lto = true
strip = true
codegen-units = 1
# TODO: Abort on panic can be enabled to save binary space. But needs a proper
# error management infrastructure to not lose crash report.
# panic = "abort"