-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (28 loc) · 885 Bytes
/
Cargo.toml
File metadata and controls
31 lines (28 loc) · 885 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
[package]
name = "bitcoin-node-census"
version = "0.1.7"
edition = "2021"
authors = ["Nick Johnson <nick@yonson.dev>"]
description = "Track bitcoin node feature adoption"
license = "CC0-1.0"
repository = "https://github.com/nyonson/bitcoin-node-census"
keywords = ["bitcoin", "p2p", "network", "monitoring", "census"]
categories = ["command-line-utilities", "network-programming"]
[features]
schema = ["dep:schemars"]
[dependencies]
bitcoin-peers-crawler = "0.1.6"
bitcoin = "0.32"
tokio = { version = "1.42", features = ["rt-multi-thread", "macros", "sync", "time", "net"] }
clap = { version = "4.5", features = ["derive", "env"] }
# Logging
log = "0.4"
fern = "0.6"
# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
csv = "1.3"
schemars = { version = "0.8", optional = true }
[[example]]
name = "generate-schema"
required-features = ["schema"]