[package]
name = "akd_client"
version = "0.8.9"
authors = ["Harjasleen Malvai <hmalvai@fb.com>", "Kevin Lewi <klewi@fb.com>", "Sean Lawlor <seanlawlor@fb.com>"]
description = "Client verification companion for the auditable key directory with limited dependencies."
license = "MIT OR Apache-2.0"
edition = "2018"
keywords = ["key-transparency", "akd"]
repository = "https://github.com/novifinancial/akd"
readme = "../README.md"
[lib]
crate-type = ["cdylib", "rlib"]
[dependencies]
akd_core = { path = "../akd_core", version = "0.8.9", default-features = false, features = ["vrf"] }
hex = "0.4"
protobuf = { version = "3.2", optional = true }
wasm-bindgen = { version = "0.2", optional = true }
wee_alloc = { version = "0.4.5", optional = true }
[features]
nostd = ["akd_core/nostd"]
sha512 = ["akd_core/sha512"]
sha256 = ["akd_core/sha256"]
sha512_256 = ["akd_core/sha512_256"]
sha3_256 = ["akd_core/sha3_256"]
sha3_512 = ["akd_core/sha3_512"]
blake3 = ["akd_core/blake3"]
wasm = ["wasm-bindgen", "protobuf", "akd_core/protobuf"]
protobuf_serialization = ["protobuf", "akd_core/protobuf"]
default = ["blake3"]
[dev-dependencies]
wasm-bindgen-test = "0.3"
akd = { path = "../akd", default-features = false }
[profile.release]
opt-level = "s"
lto = true