Bump version to 0.2 as we now have full proof building support
[dnssec-prover] / Cargo.toml
1 [package]
2 name = "dnssec-prover"
3 version = "0.2.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
17 [dependencies]
18 ring = { version = "0.17", default-features = false, features = ["alloc"] }
19 hex_lit = { version = "0.1", default-features = false, features = ["rust_v_1_46"] }
20 tokio_crate = { package = "tokio", version = "1.0", default-features = false, optional = true }
21
22 [dev-dependencies]
23 hex-conservative = { version = "0.1", default-features = false, features = ["alloc"] }
24 base64 = "0.21"
25 rand = { version = "0.8", default-features = false, features = ["getrandom"] }
26 tokio_crate = { package = "tokio", version = "1.0", features = ["rt", "macros"] }