Files
cdk/crates/cdk-sqlite/Cargo.toml
thesimplekid 04a463be1f feat(wallet): make wallet single mint and unit
feat(wallet): cli use mint with one url and unit

feat(wallet): remove p2pk keys from wallet

feat(wallet): multimint wallet
2024-06-27 12:09:44 +01:00

30 lines
799 B
TOML

[package]
name = "cdk-sqlite"
version = "0.1.0"
edition = "2021"
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]
bitcoin.workspace = true
const_format = "0.2.32"
sqlx = { version = "0.6.3", default-features = false, features = ["runtime-tokio-rustls", "chrono", "sqlite", "macros", "migrate"] }
cdk = { workspace = true, default-features = false }
thiserror.workspace = true
tokio = { workspace = true, features = [
"time",
"macros",
"sync",
] }
tracing.workspace = true
async-trait.workspace = true
serde_json.workspace = true