Files
cdk/crates/cdk-sqlite/Cargo.toml
thesimplekid 27568c247b release: 0.2.0
2024-07-11 21:24:58 +01:00

32 lines
876 B
TOML

[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