Files
cdk/crates/cdk-redb/Cargo.toml
2025-02-08 12:08:27 +00:00

31 lines
911 B
TOML

[package]
name = "cdk-redb"
version = "0.7.0"
edition = "2021"
authors = ["CDK Developers"]
description = "Redb 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.0" }
redb = "2.2.0"
thiserror = "1"
tracing = { version = "0.1", default-features = false, features = [
"attributes",
"log",
] }
serde = { version = "1", default-features = false, features = ["derive"] }
serde_json = "1"
lightning-invoice = { version = "0.32.0", features = ["serde", "std"] }
uuid = { version = "1", features = ["v4", "serde"] }