af51720e51e1d72c6655e165d9820f4a13accac8
[dnssec-prover] / Cargo.toml
1 [package]
2 name = "dnssec-prover"
3 version = "0.1.0"
4 authors = ["Matt Corallo"]
5 license = "MIT OR Apache-2.0"
6 repository = "https://git.bitcoin.ninja/dnssec-prover"
7 description = "A simple crate which allows for the creation and validation of transferrable proofs of entries in the DNS."
8 keywords = ["dns", "dnssec", "rfc9102", "no-std"]
9 categories = ["cryptography", "no-std"]
10 edition = "2021"
11 rust-version = "1.60.0"
12
13 [dependencies]
14 ring = { version = "0.17", default-features = false, features = ["alloc"] }
15 hex_lit = { version = "0.1", default-features = false, features = ["rust_v_1_46"] }
16
17 [dev-dependencies]
18 hex-conservative = { version = "0.1", default-features = false, features = ["alloc"] }
19 base64 = "0.21"
20 rand = { version = "0.8", default-features = false, features = ["getrandom"] }