-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathCargo.toml
69 lines (62 loc) · 1.71 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
[package]
name = "keyhouse"
version = "0.1.0"
authors = ["Max Bruce <[email protected]>", "Sergey Shekyan <[email protected]>", "Yu Ding <[email protected]>", "Lingxiang 'LinG' Wang <[email protected]>"]
edition = "2018"
build = "build.rs"
license = "Apache-2.0"
description = "keyhouse key management system"
homepage = "https://github.com/bytedance/keyhouse"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
tonic = { version = "0.5", features = ["tls"] }
prost = "0.8"
tokio = { version = "1.0", features = ["full"] }
log = "0.4"
env_logger = "0.8"
threadgroup = "0.1"
rustls = { version = "0.19.0", features = ["dangerous_configuration"] }
webpki = "0.21"
lazy_static = "1.4"
rand = "0.8"
sentry = "0.23"
url = "2.2"
etcd-rs = { version = "0.6", git = "https://github.com/Protryon/etcd-rs" }
uuid = { version = "0.8", features = ["v4", "serde"] }
serde = "1.0"
serde_json = "1.0"
chashmap = "2.2"
arc-swap = "0.4"
futures = "0.3"
base64 = "0.13"
actix-rt = "2.3.0"
actix-web = { version = "=4.0.0-beta.9", features = ["rustls"] }
actix-router = "=0.5.0-beta.2"
actix-service = "2.0.0"
actix-tls = "=3.0.0-beta.5"
regex = "1.4"
spire-workload = "=1.1.4"
sha2 = "0.9"
hex = "0.4"
notify = "4.0"
crc = "1.8"
jemallocator = "0.3"
anyhow = "1.0"
serde_yaml = "0.8"
hyper = "0.14"
zeroize = { version = "1.3", features = ["zeroize_derive"] }
ring = { version = "0.16", features = ["std"] }
[dev-dependencies]
tempfile = "3.1.0"
[build-dependencies]
tonic-build = "0.5"
prost-build = "0.8"
[lib]
name = "keyhouse"
path = "src/lib.rs"
[profile.release]
lto = true
[features]
default = ["spawn_controlplane", "spawn_dataplane"]
spawn_controlplane = []
spawn_dataplane = []