mirror of
https://github.com/aljazceru/cdk.git
synced 2026-02-21 04:55:58 +01:00
refactor: cdk MSRV
This commit is contained in:
@@ -1,32 +1,32 @@
|
||||
[package]
|
||||
name = "cdk-cli"
|
||||
version = { workspace = true }
|
||||
version = "0.3.0"
|
||||
edition = "2021"
|
||||
authors = ["CDK Developers"]
|
||||
description = "Cashu cli wallet built on CDK"
|
||||
homepage.workspace = true
|
||||
repository.workspace = true
|
||||
rust-version.workspace = true # MSRV
|
||||
license.workspace = true
|
||||
license = "MIT"
|
||||
homepage = "https://github.com/cashubtc/cdk"
|
||||
repository = "https://github.com/cashubtc/cdk.git"
|
||||
rust-version = "1.63.0" # MSRV
|
||||
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
[dependencies]
|
||||
anyhow.workspace = true
|
||||
bip39.workspace = true
|
||||
cdk = { workspace = true, default-features = false, features = ["wallet"] }
|
||||
cdk-redb = { workspace = true, default-features = false, features = ["wallet"] }
|
||||
cdk-sqlite = { workspace = true, default-features = false, features = ["wallet"] }
|
||||
clap.workspace = true
|
||||
serde = { workspace = true, features = ["derive"] }
|
||||
serde_json.workspace = true
|
||||
tokio.workspace = true
|
||||
tracing.workspace = true
|
||||
tracing-subscriber.workspace = true
|
||||
rand.workspace = true
|
||||
home.workspace = true
|
||||
anyhow = "1"
|
||||
bip39 = "2.0"
|
||||
cdk = { path = "../cdk", default-features = false, features = ["wallet"] }
|
||||
cdk-redb = { path = "../cdk-redb", default-features = false, features = ["wallet"] }
|
||||
cdk-sqlite = { path = "../cdk-sqlite", default-features = false, features = ["wallet"] }
|
||||
clap = { version = "4.4.8", features = ["derive", "env", "default"] }
|
||||
serde = { version = "1", default-features = false, features = ["derive"] }
|
||||
serde_json = "1"
|
||||
tokio = { version = "1", default-features = false }
|
||||
tracing = { version = "0.1", default-features = false, features = ["attributes", "log"] }
|
||||
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
|
||||
rand = "0.8.5"
|
||||
home = "0.5.5"
|
||||
nostr-sdk = { version = "0.33.0", default-features = false, features = [
|
||||
"nip04",
|
||||
"nip44"
|
||||
]}
|
||||
url.workspace = true
|
||||
url = "2.3"
|
||||
|
||||
Reference in New Issue
Block a user