Correct proof building for records at a zone root
[dnssec-prover] / Cargo.toml
1 [package]
2 name = "dnssec-prover"
3 version = "0.3.0"
4 authors = ["Matt Corallo"]
5 license = "MIT OR Apache-2.0"
6 repository = "https://git.bitcoin.ninja/index.cgi?p=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 [features]
14 std = []
15 tokio = ["tokio_crate/net", "tokio_crate/io-util", "std"]
16 build_server = ["tokio", "tokio-stream", "tokio_crate/rt-multi-thread", "tokio_crate/macros"]
17
18 [dependencies]
19 ring = { version = "0.17", default-features = false, features = ["alloc"] }
20 hex_lit = { version = "0.1", default-features = false, features = ["rust_v_1_46"] }
21 tokio_crate = { package = "tokio", version = "1.0", default-features = false, optional = true }
22 tokio-stream = { version = "0.1", default-features = false, optional = true, features = ["io-util"] }
23
24 [dev-dependencies]
25 hex-conservative = { version = "0.1", default-features = false, features = ["alloc"] }
26 base64 = "0.21"
27 rand = { version = "0.8", default-features = false, features = ["getrandom"] }
28 tokio_crate = { package = "tokio", version = "1.0", features = ["rt", "macros", "net", "rt-multi-thread"] }
29 tokio-stream = { version = "0.1", default-features = false, features = ["io-util"] }
30 minreq = { version = "2.0" }
31
32 [lib]
33 name = "dnssec_prover"
34 path = "src/lib.rs"
35
36 [[bin]]
37 name = "http_proof_gen"
38 path = "src/http.rs"