23 lines
609 B
TOML
23 lines
609 B
TOML
[package]
|
|
name = "local-mini-kms"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
zeroize = "1.5.7"
|
|
clap = "2.33"
|
|
hex = "0.4"
|
|
base64 = "0.13.0"
|
|
sha2 = "0.10.2"
|
|
lazy_static = "1.4.0"
|
|
serde_derive = "1.0"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
josekit = "0.8.1"
|
|
rust_util = { version = "0.6", features = ["use_clap"] }
|
|
tokio = { version = "1.19", features = ["full"] }
|
|
hyper = { version = "0.14.20", features = ["client", "server", "tcp", "http1", "http2"] }
|
|
rusqlite = "0.28.0"
|