12345678910111213141516171819202122232425262728293031 |
- [package]
- name = "cdk-sqlite"
- version = "0.2.0"
- edition = "2021"
- authors = ["CDK Developers"]
- description = "Sqlite storage backend for CDK"
- license.workspace = true
- homepage.workspace = true
- repository.workspace = true
- rust-version.workspace = true
- # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
- [features]
- default = ["mint", "wallet"]
- mint = ["cdk/mint"]
- wallet = ["cdk/wallet"]
- [dependencies]
- async-trait.workspace = true
- cdk = { workspace = true, default-features = false }
- bitcoin.workspace = true
- sqlx = { version = "0.6.3", default-features = false, features = ["runtime-tokio-rustls", "sqlite", "macros", "migrate"] }
- thiserror.workspace = true
- tokio = { workspace = true, features = [
- "time",
- "macros",
- "sync",
- ] }
- tracing.workspace = true
- serde_json.workspace = true
- lightning-invoice.workspace = true
|