-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathCargo.toml
More file actions
37 lines (32 loc) · 947 Bytes
/
Cargo.toml
File metadata and controls
37 lines (32 loc) · 947 Bytes
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
[package]
name = "kernel-node"
version = "0.1.0"
edition = "2021"
rust-version = "1.85.0"
[dependencies]
# bitcoinkernel = { path = "../rust-bitcoinkernel", version = "0.0.15" }
bitcoinkernel = "0.2"
addrman = { package = "bitcoin-address-book", version = "0.1.1" }
bitcoin = "0.32.8"
p2p = { package = "bitcoin-p2p", git = "https://github.com/2140-dev/bitcoin-p2p.git", rev = "5dc03375636a10487c7e50659416876c28f58a3b" }
## Log and configuration
configure_me = "0.4.0"
clap = { version = "4", features = ["derive"] }
log = "0.4"
env_logger = "0.10"
## IPC required dependencies
capnp = "0.25"
capnp-rpc = "0.25"
tokio = { version = "1", features = ["net", "rt", "macros", "signal"] }
tokio-util = { version = "0.7", features = ["compat"] }
futures = "0.3.0"
libc = "0.2"
[build-dependencies]
capnpc = "0.25"
configure_me_codegen = "0.4.0"
[package.metadata.configure_me]
spec = "config_spec.toml"
[[bin]]
name = "node"
[[bin]]
name = "cli"