-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
24 lines (23 loc) · 940 Bytes
/
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
[package]
name = "btcpp_cdk_wallet"
version = "0.1.0"
edition = "2021"
[dependencies]
anyhow = "1"
bip39 = "2.0"
cdk = { git = "https://github.com/cashubtc/cdk", default-features = false, features = ["wallet"]}
cdk-redb = { git = "https://github.com/cashubtc/cdk", default-features = false, features = ["wallet"] }
cdk-sqlite = { git = "https://github.com/cashubtc/cdk", default-features = false, features = ["wallet"] }
clap = { version = "4.4.8", features = ["derive", "env", "default"] }
serde = { version = "1", default-features = false, features = ["derive"] }
serde_json = "1"
tokio = { version = "1", default-features = false }
tracing = { version = "0.1", default-features = false, features = ["attributes", "log"] }
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
rand = "0.8.5"
home = "0.5.5"
nostr-sdk = { version = "0.33.0", default-features = false, features = [
"nip04",
"nip44"
]}
url = "2.3"