akd_mysql/Cargo.toml (28 lines of code) (raw):
[package]
name = "akd_mysql"
version = "0.5.4"
authors = ["Harjasleen Malvai <hmalvai@fb.com>", "Kevin Lewi <klewi@fb.com>", "Sean Lawlor <seanlawlor@fb.com>"]
description = "A MySQL storage layer implementation for an auditable key directory (AKD)"
license = "MIT OR Apache-2.0"
edition = "2018"
keywords = ["key-transparency", "akd", "mysql", "akd-mysql"]
repository = "https://github.com/novifinancial/akd"
[features]
bench = []
[dependencies]
bincode = "1"
winter-crypto = "0.2"
winter-utils = "0.2"
winter-math = "0.2"
rand = "0.8"
serde = { version = "1", features = ["derive"] }
async-trait = "0.1"
tokio = { version = "1.10", features = ["full"] }
async-recursion = "0.3"
mysql_async = "0.29"
log = { version = "0.4.8", features = ["kv_unstable"] }
akd = { path = "../akd", version = "^0.5.0", features = ["serde_serialization"] }
[dev-dependencies]
criterion = "0.3"
serial_test = "0.5"
akd = { path = "../akd", version = "^0.5.0", features = ["public-tests"] }