-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathCargo.toml
41 lines (35 loc) · 1.15 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
39
40
41
[package]
name = "bdk_kyoto"
version = "0.6.0"
authors = ["Rob <rustaceanrob@protonmail.com>", "Bitcoin Dev Kit Developers"]
description = "BDK blockchain integration using P2P light client Kyoto"
license = "MIT OR Apache-2.0"
repository = "https://github.com/bitcoindevkit/bdk-kyoto"
documentation = "https://docs.rs/bdk-kyoto"
readme = "README.md"
keywords = ["bitcoin", "peer-to-peer", "light-client"]
edition = "2021"
rust-version = "1.63.0"
[dependencies]
bdk_wallet = { version = "1.0.0" }
kyoto-cbf = { version = "0.6.0", default-features = false, features = ["dns", "database"] }
tracing = { version = "0.1", optional = true }
tracing-subscriber = { version = "0.3", optional = true }
[features]
default = ["events", "callbacks", "trace"]
trace = ["tracing", "tracing-subscriber"]
callbacks = []
events = []
[dev-dependencies]
tokio = { version = "1.37", features = ["full"], default-features = false }
anyhow = "1.0"
bdk_testenv = "0.9.0"
tempfile = "3.12.0"
tracing = { version = "0.1" }
tracing-subscriber = { version = "0.3" }
[[example]]
name = "callbacks"
required-features = ["trace", "callbacks"]
[[example]]
name = "events"
required-features = ["events"]