12345678910111213141516171819202122232425262728293031 |
- [package]
- name = "cdk-redb"
- version = "0.7.1"
- edition = "2021"
- authors = ["CDK Developers"]
- description = "Redb storage backend for CDK"
- license = "MIT"
- homepage = "https://github.com/cashubtc/cdk"
- repository = "https://github.com/cashubtc/cdk.git"
- rust-version = "1.81.0" # MSRV
- # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
- [features]
- default = ["mint", "wallet"]
- mint = ["cdk-common/mint"]
- wallet = ["cdk-common/wallet"]
- [dependencies]
- async-trait.workspace = true
- cdk-common.workspace = true
- redb = "2.4.0"
- thiserror.workspace = true
- tracing.workspace = true
- serde.workspace = true
- serde_json.workspace = true
- lightning-invoice.workspace = true
- uuid.workspace = true
- [dev-dependencies]
- tempfile = "3.17.1"
- tokio.workspace = true
|