-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathCargo.toml
More file actions
48 lines (45 loc) · 1.27 KB
/
Cargo.toml
File metadata and controls
48 lines (45 loc) · 1.27 KB
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
45
46
47
48
[package]
name = "bip157"
version = "0.4.2"
authors = ["Rob <rob@2140.dev>"]
edition = "2021"
license = "MIT OR Apache-2.0"
description = "A Bitcoin light-client according to the BIP-157/BIP-158 specifications"
repository = "https://github.com/2140-dev/kyoto"
readme = "README.md"
keywords = ["bitcoin", "cryptography", "network", "peer-to-peer"]
categories = ["cryptography::cryptocurrencies"]
rust-version = "1.84.0"
[dependencies]
addrman = { package = "bitcoin-address-book", version = "0.1.1" }
bitcoin = { version = "0.32.8", default-features = false, features = [
"rand-std",
] }
bip324 = { version = "0.7.0", default-features = false, features = [
"tokio",
] }
hashes = { package = "bitcoin_hashes", version = "0.20.0" }
tokio = { version = "1.19", default-features = false, features = [
"rt-multi-thread",
"sync",
"time",
"io-util",
"net",
"macros",
] }
[dev-dependencies]
corepc-node = { version = "0.10.0", default-features = false, features = [
"28_0", "download"
] }
hex = { version = "0.4.0" }
serde = { version = "1.0.219", features = ["derive"]}
tracing = "0.1"
tracing-subscriber = "0.3"
tempfile = "3"
tokio = { version = "1.19", default-features = false, features = [
"full",
"test-util",
] }
[lib]
name = "bip157"
path = "src/lib.rs"