X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;ds=inline;f=Cargo.toml;h=edbcebd0dbd97494139ae67818eb7785d78681e8;hb=974fe2805f8a34d0fa88c05c2374ed69c51d7674;hp=5e31b018ee966a7669f15c6a837a6e275bc52a3e;hpb=1bd618194f44df39813c52f9fb2a022d26b8a7eb;p=dnssec-prover diff --git a/Cargo.toml b/Cargo.toml index 5e31b01..edbcebd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dnssec-prover" -version = "0.2.0" +version = "0.3.1" authors = ["Matt Corallo"] license = "MIT OR Apache-2.0" repository = "https://git.bitcoin.ninja/index.cgi?p=dnssec-prover" @@ -13,6 +13,7 @@ rust-version = "1.60.0" [features] std = [] 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"] } @@ -23,4 +24,13 @@ tokio_crate = { package = "tokio", version = "1.0", default-features = false, op hex-conservative = { version = "0.1", default-features = false, features = ["alloc"] } base64 = "0.21" rand = { version = "0.8", default-features = false, features = ["getrandom"] } -tokio_crate = { package = "tokio", version = "1.0", features = ["rt", "macros"] } +tokio_crate = { package = "tokio", version = "1.0", features = ["rt", "macros", "net", "rt-multi-thread"] } +minreq = { version = "2.0" } + +[lib] +name = "dnssec_prover" +path = "src/lib.rs" + +[[bin]] +name = "http_proof_gen" +path = "src/http.rs"