Expose uniffi bindings for building and verifying proofs
[dnssec-prover] / bench / Cargo.toml
1 [package]
2 name = "bench"
3 version = "0.0.1"
4 authors = ["Matt Corallo"]
5 edition = "2021"
6
7 [[bench]]
8 name = "bench"
9 harness = false
10
11 [features]
12
13 [dependencies]
14 dnssec-prover = { path = "../", features = ["validation"] }
15 criterion = { version = "0.4", default-features = false }
16
17 [profile.release]
18 opt-level = 3
19 codegen-units = 1
20 lto = true
21 panic = "abort"
22 debug = true