Add U256/U384 and mod-const-prime wrapper utilities of both.
[dnssec-prover] / Cargo.toml
index 71db9ba4b5f909a95994f37f5bd13af4c8046510..7dd5d41458889d81dc9a9944673bd9c9ee6c5b30 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "dnssec-prover"
-version = "0.5.0"
+version = "0.5.1"
 authors = ["Matt Corallo"]
 license = "MIT OR Apache-2.0"
 repository = "https://git.bitcoin.ninja/index.cgi?p=dnssec-prover"
@@ -22,10 +22,13 @@ build_server = ["tokio", "tokio_crate/rt-multi-thread", "tokio_crate/macros"]
 
 [dependencies]
 ring = { version = "0.17", default-features = false, features = ["alloc"], optional = true }
-bitcoin_hashes = { version = "0.13", default-features = false, optional = true }
+bitcoin_hashes = { version = "0.14", default-features = false, optional = true }
 hex_lit = { version = "0.1", default-features = false, features = ["rust_v_1_46"], optional = true }
 tokio_crate = { package = "tokio", version = "1.0", default-features = false, optional = true }
 
+[target.'cfg(fuzzing)'.dependencies]
+ibig = { version = "0.3", optional = true }
+
 [dev-dependencies]
 hex-conservative = { version = "0.1", default-features = false, features = ["alloc"] }
 base64 = "0.21"
@@ -33,6 +36,9 @@ rand = { version = "0.8", default-features = false, features = ["getrandom"] }
 tokio_crate = { package = "tokio", version = "1.0", features = ["rt", "macros", "net", "rt-multi-thread"] }
 minreq = { version = "2.0" }
 
+[profile.dev]
+opt-level = 1
+
 [lib]
 name = "dnssec_prover"
 path = "src/lib.rs"