mirror of
https://github.com/aljazceru/cdk.git
synced 2025-12-25 16:44:46 +01:00
44 lines
1.2 KiB
TOML
44 lines
1.2 KiB
TOML
[package]
|
|
name = "cdk-cli"
|
|
version.workspace = true
|
|
authors = ["CDK Developers"]
|
|
description = "Cashu cli wallet built on CDK"
|
|
license.workspace = true
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
readme = "README.md"
|
|
|
|
[features]
|
|
default = ["bip353"]
|
|
bip353 = ["dep:trust-dns-resolver"]
|
|
sqlcipher = ["cdk-sqlite/sqlcipher"]
|
|
# MSRV is not tracked with redb enabled
|
|
redb = ["dep:cdk-redb"]
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
bip39.workspace = true
|
|
bitcoin.workspace = true
|
|
cdk = { workspace = true, default-features = false, features = ["wallet", "auth"]}
|
|
cdk-redb = { workspace = true, features = ["wallet"], optional = true }
|
|
cdk-sqlite = { workspace = true, features = ["wallet"] }
|
|
clap.workspace = true
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
tokio.workspace = true
|
|
tracing.workspace = true
|
|
tracing-subscriber.workspace = true
|
|
home.workspace = true
|
|
nostr-sdk = { version = "0.41.0", default-features = false, features = [
|
|
"nip04",
|
|
"nip44",
|
|
"nip59"
|
|
]}
|
|
reqwest.workspace = true
|
|
url.workspace = true
|
|
serde_with.workspace = true
|
|
lightning.workspace = true
|
|
trust-dns-resolver = { version = "0.23.2", optional = true }
|