Clean Cargo.toml

This commit is contained in:
benthecarman
2023-04-17 14:16:15 -05:00
parent 1246e623a3
commit 7f788d5fb8

View File

@@ -12,15 +12,17 @@ description = "\"What am I looking at?\" A tool for decoding bitcoin-related str
keywords = [ "lightning", "bitcoin" ]
[dependencies]
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
bech32 = "0.9.1"
bitcoin = { version = "0.29.2", default-features = false, features = ["serde"] }
bip21 = "0.2.0"
lnurl-rs = { version = "0.2.1", default-features = false }
lightning-invoice = { version = "0.22.0", default-features = false }
lightning = { version = "0.0.114", default-features = false }
[features]
default = ["std"]
std = ["bitcoin/std", "lightning-invoice/std", "lightning/std"]
no-std = ["bitcoin/no-std", "lightning-invoice/no-std", "lightning/no-std"]
[dev-dependencies]
bitcoin = { version = "0.29.2", features = ["std"] }
lightning = { version = "0.0.114", features = ["std"] }