1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- [package]
- name = "cdk-mintd"
- version = "0.7.2"
- edition = "2021"
- authors = ["CDK Developers"]
- license = "MIT"
- homepage = "https://github.com/cashubtc/cdk"
- repository = "https://github.com/cashubtc/cdk.git"
- description = "CDK mint binary"
- [features]
- default = ["management-rpc"]
- swagger = ["cdk-axum/swagger", "dep:utoipa", "dep:utoipa-swagger-ui"]
- redis = ["cdk-axum/redis"]
- management-rpc = ["cdk-mint-rpc"]
- [dependencies]
- anyhow = "1"
- axum = "0.6.20"
- cdk = { path = "../cdk", version = "0.7.1", default-features = false, features = [
- "mint",
- ] }
- cdk-redb = { path = "../cdk-redb", version = "0.7.1", default-features = false, features = [
- "mint",
- ] }
- cdk-sqlite = { path = "../cdk-sqlite", version = "0.7.1", default-features = false, features = [
- "mint",
- ] }
- cdk-cln = { path = "../cdk-cln", version = "0.7.1", default-features = false }
- cdk-lnbits = { path = "../cdk-lnbits", version = "0.7.1", default-features = false }
- cdk-phoenixd = { path = "../cdk-phoenixd", version = "0.7.1", default-features = false }
- cdk-lnd = { path = "../cdk-lnd", version = "0.7.1", default-features = false }
- cdk-fake-wallet = { path = "../cdk-fake-wallet", version = "0.7.1", default-features = false }
- cdk-strike = { path = "../cdk-strike", version = "0.7.1" }
- cdk-axum = { path = "../cdk-axum", version = "0.7.1", default-features = false }
- cdk-mint-rpc = { path = "../cdk-mint-rpc", version = "0.7.1", default-features = false, optional = true }
- config = { version = "0.13.3", features = ["toml"] }
- clap = { version = "~4.0.32", features = ["derive"] }
- bitcoin = { version = "0.32.2", features = [
- "base64",
- "serde",
- "rand",
- "rand-std",
- ] }
- tokio = { version = "1", default-features = false, features = ["signal"] }
- tracing = { version = "0.1", default-features = false, features = [
- "attributes",
- "log",
- ] }
- tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
- futures = { version = "0.3.28", default-features = false }
- serde = { version = "1", default-features = false, features = ["derive"] }
- bip39 = { version = "2.0", features = ["rand"] }
- tower-http = { version = "0.4.4", features = ["cors", "compression-full"] }
- lightning-invoice = { version = "0.32.0", features = ["serde", "std"] }
- home = "0.5.5"
- url = "2.3"
- utoipa = { version = "4", optional = true }
- utoipa-swagger-ui = { version = "4", features = ["axum"], optional = true }
|