Files
cdk/crates/cdk-sqlite/Cargo.toml
Pavol Rusnak 4a764810d9 fix: typos
2024-08-16 15:00:56 +01:00

32 lines
889 B
TOML

[package]
name = "cdk-sqlite"
version = { workspace = true }
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