X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=Cargo.toml;h=5a71c1fb8898f8cfc2fee8b02f9c9cb83affff41;hb=e4503cf90b6ad5ed9edc99389956ceffb1c35502;hp=edbcebd0dbd97494139ae67818eb7785d78681e8;hpb=974fe2805f8a34d0fa88c05c2374ed69c51d7674;p=dnssec-prover diff --git a/Cargo.toml b/Cargo.toml index edbcebd..5a71c1f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dnssec-prover" -version = "0.3.1" +version = "0.3.2" authors = ["Matt Corallo"] license = "MIT OR Apache-2.0" repository = "https://git.bitcoin.ninja/index.cgi?p=dnssec-prover" @@ -11,13 +11,15 @@ edition = "2021" rust-version = "1.60.0" [features] +default = ["validation"] std = [] +validation = ["ring", "hex_lit"] tokio = ["tokio_crate/net", "tokio_crate/io-util", "std"] build_server = ["tokio", "tokio_crate/rt-multi-thread", "tokio_crate/macros"] [dependencies] -ring = { version = "0.17", default-features = false, features = ["alloc"] } -hex_lit = { version = "0.1", default-features = false, features = ["rust_v_1_46"] } +ring = { version = "0.17", default-features = false, features = ["alloc"], 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 } [dev-dependencies]