mirror of
https://github.com/aljazceru/cdk.git
synced 2025-12-25 08:35:09 +01:00
32 lines
876 B
TOML
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
|