bff333a2c64e22c211ddee52183aef8a95c5f194
[dnssec-prover] / uniffi / Cargo.toml
1 [package]
2 name = "dnssec-prover-uniffi"
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 build = "build.rs"
10
11 [dependencies]
12 dnssec-prover = { path = "../", default-features = false, features = ["validation"] }
13 uniffi = { version = "0.27" }
14
15 [build-dependencies]
16 uniffi = { version = "0.27", features = [ "build" ] }
17
18 [[bin]]
19 name = "uniffi-bindgen"
20 path = "uniffi-bindgen.rs"
21
22 [lib]
23 crate-type = ["cdylib"]
24
25 [profile.release]
26 lto = true
27 codegen-units = 1