-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
28 lines (25 loc) · 1.02 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
[package]
name = "bitcoin-mock-rpc"
version = "0.0.12"
edition = "2021"
[dependencies]
bitcoin = "0.32.2"
secp256k1 = "0.29.0"
serde = { version = "1.0", default-features = false }
serde_json = "1.0.125"
bitcoincore-rpc = "0.19.0"
thiserror = "1.0.63"
bitcoin-scriptexec = { git = "https://github.com/Bitcoin-Wildlife-Sanctuary/rust-bitcoin-scriptexec" }
rusqlite = { version = "0.32.1", features = ["bundled"] }
rs_merkle = "1.4"
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
clap = { version = "4.5.16", features = ["derive"] }
jsonrpsee = { version = "0.24.3", features = ["server", "client", "macros"], default-features = false, optional = true }
tokio = { version = "1.39.3", features = ["full"], optional = true }
tower = { version = "0.4.13", optional = true }
[dev-dependencies]
tokio = { version = "1.39.3", features = ["full"] }
[features]
# Enables RPC server interface. Note: Not stable nor complete. Use it in your own caution.
rpc_server = ["dep:jsonrpsee", "dep:tokio", "dep:tower"]