mirror of
https://github.com/conduition/dlctix.git
synced 2026-01-30 05:05:06 +01:00
deps should use only minimal features required
This commit is contained in:
14
Cargo.toml
14
Cargo.toml
@@ -11,13 +11,13 @@ keywords = ["dlc", "smart", "contract", "ticket", "auction"]
|
||||
exclude = ["/img"]
|
||||
|
||||
[dependencies]
|
||||
bitcoin = { version = "0.31.1" }
|
||||
hex = "0.4.3"
|
||||
musig2 = { version = "0.0.8", features = ["rand"] }
|
||||
rand = "0.8.5"
|
||||
secp = { version = "0.2.1" }
|
||||
secp256k1 = { version = "0.28.2", features = ["global-context"] }
|
||||
sha2 = "0.10.8"
|
||||
bitcoin = { version = "0.31.1", default-features = false, features = ["std"] }
|
||||
hex = { version = "0.4.3", default-features = false }
|
||||
musig2 = { version = "0.0.8", default-features = false, features = ["secp256k1", "rand"] }
|
||||
rand = { version = "0.8.5", default-features = false }
|
||||
secp = { version = "0.2.1", default-features = false }
|
||||
secp256k1 = { version = "0.28.2", default-features = false, features = ["global-context"] }
|
||||
sha2 = { version = "0.10.8", default-features = false }
|
||||
|
||||
[dev-dependencies]
|
||||
bitcoincore-rpc = "0.18.0"
|
||||
|
||||
Reference in New Issue
Block a user