mirror of
https://github.com/aljazceru/cdk.git
synced 2025-12-27 01:25:43 +01:00
feat(wallet): cli use mint with one url and unit feat(wallet): remove p2pk keys from wallet feat(wallet): multimint wallet
30 lines
799 B
TOML
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
|