Files
cdk/crates/cdk-sqlite/Cargo.toml
thesimplekid c63fc02a5a Prepare v0.8.0 (#672)
* chore: Bump cdk dependency to v0.8.0

* chore: add docker publish to ci

* chore: add doc test build to ci
2025-03-24 18:40:08 +00:00

38 lines
1.1 KiB
TOML

[package]
name = "cdk-sqlite"
version.workspace = true
edition.workspace = true
authors = ["CDK Developers"]
description = "SQLite storage backend for CDK"
license.workspace = true
homepage = "https://github.com/cashubtc/cdk"
repository = "https://github.com/cashubtc/cdk.git"
rust-version.workspace = true # MSRV
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
default = ["mint", "wallet", "auth"]
mint = ["cdk-common/mint"]
wallet = ["cdk-common/wallet"]
auth = ["cdk-common/auth"]
sqlcipher = ["libsqlite3-sys"]
[dependencies]
async-trait.workspace = true
cdk-common.workspace = true
bitcoin.workspace = true
sqlx = { version = "0.7.4", default-features = false, features = [
"runtime-tokio-rustls",
"sqlite",
"macros",
"migrate",
"uuid",
] }
libsqlite3-sys = { version = "0.27.0", features = ["bundled-sqlcipher"], optional = true }
thiserror.workspace = true
tokio.workspace = true
tracing.workspace = true
serde_json.workspace = true
lightning-invoice.workspace = true
uuid.workspace = true