mirror of
https://github.com/aljazceru/cdk.git
synced 2025-12-24 08:05:02 +01:00
38 lines
1.1 KiB
TOML
38 lines
1.1 KiB
TOML
[package]
|
|
name = "cdk-sqlite"
|
|
version = "0.7.1"
|
|
edition = "2021"
|
|
authors = ["CDK Developers"]
|
|
description = "SQLite storage backend for CDK"
|
|
license = "MIT"
|
|
homepage = "https://github.com/cashubtc/cdk"
|
|
repository = "https://github.com/cashubtc/cdk.git"
|
|
rust-version = "1.66.0" # MSRV
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
[features]
|
|
default = ["mint", "wallet"]
|
|
mint = []
|
|
wallet = []
|
|
|
|
[dependencies]
|
|
async-trait = "0.1"
|
|
cdk-common = { path = "../cdk-common", version = "0.7.1" }
|
|
bitcoin = { version = "0.32.2", default-features = false }
|
|
sqlx = { version = "0.6.3", default-features = false, features = [
|
|
"runtime-tokio-rustls",
|
|
"sqlite",
|
|
"macros",
|
|
"migrate",
|
|
"uuid",
|
|
] }
|
|
thiserror = "1"
|
|
tokio = { version = "1", features = ["time", "macros", "sync"] }
|
|
tracing = { version = "0.1", default-features = false, features = [
|
|
"attributes",
|
|
"log",
|
|
] }
|
|
serde_json = "1"
|
|
lightning-invoice = { version = "0.32.0", features = ["serde", "std"] }
|
|
uuid = { version = "1", features = ["v4", "serde"] }
|