Skip to content

Commit

Permalink
chore(deps): make bip39 required
Browse files Browse the repository at this point in the history
  • Loading branch information
thesimplekid committed May 15, 2024
1 parent 188cfa6 commit 79b5349
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions crates/cdk/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,36 +11,36 @@ license.workspace = true

[features]
default = ["mint", "wallet"]
mint = ["dep:bip39"]
wallet = ["dep:bip39", "dep:reqwest"]
mint = []
wallet = ["dep:reqwest"]

[dependencies]
async-trait = "0.1"
base64 = "0.22" # bitcoin uses v0.13 (optional dep)
bip39 = { version = "2.0", optional = true }
bip39 = "2.0"
bitcoin = { version = "0.30", features = [
"serde",
"rand",
"rand-std",
] } # lightning-invoice uses v0.30
http = "1.0"
lightning-invoice = { version = "0.30", features = ["serde"] }
lightning-invoice = { version = "0.31", features = ["serde"] }
once_cell = "1.19"
reqwest = { version = "0.12", default-features = false, features = [
"json",
"rustls-tls",
"socks",
], optional = true }
serde = { version = "1.0", default-features = false, features = ["derive"] }
serde_json = "1.0"
serde_json = "1"
serde_with = "3.4"
tracing = { version = "0.1", default-features = false, features = [
"attributes",
"log",
] }
thiserror = "1.0"
thiserror = "1"
url = "2.3"
uuid = { version = "1.6", features = ["v4"] }
uuid = { version = "1", features = ["v4"] }

[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
tokio = { workspace = true, features = [
Expand Down

0 comments on commit 79b5349

Please sign in to comment.