Bump version for bug fixes and new query APIs
[dnssec-prover] / wasmpack / Cargo.toml
1 [package]
2 name = "dnssec-prover-wasm"
3 version = "0.1.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 edition = "2021"
9
10 [dependencies]
11 dnssec-prover = { path = "../", default-features = false, features = ["validation"] }
12 wasm-bindgen = { version = "0.2", default-features = false }
13 getrandom = { version = "0.2", default-features = false, features = ["js"] }
14 wee_alloc = { version = "0.4", default-features = false }
15
16 [lib]
17 crate-type = ["cdylib", "rlib"]
18
19 [profile.release]
20 lto = true
21 codegen-units = 1