Expose uniffi bindings for building and verifying proofs
[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 [lib]
19 crate-type = ["cdylib"]
20
21 [profile.release]
22 lto = true
23 codegen-units = 1