forked from jialez0/attestation-agent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
36 lines (32 loc) · 759 Bytes
/
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
[package]
name = "attestation-agent"
version = "1.0.0"
authors = ["The Attestation Agent Authors"]
publish = false
edition = "2018"
[dependencies]
tokio = { version = "1.0", features = ["full"] }
tonic = "0.5"
prost = "0.8"
futures = "0.3.5"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
aes-gcm = "0.9.2"
base64 = "0.13.0"
clap = "2"
anyhow = "1.0"
log = "0.4.14"
env_logger = "0.9.0"
lazy_static = "1.4.0"
string-error = "0.1.0"
foreign-types = "0.5.0"
openssl = { version = "0.10", optional = true, features = ["vendored"]}
[build-dependencies]
tonic-build = "0.5"
shadow-rs = "0.5.25"
[features]
default = ["sample_kbc", "offline_fs_kbc"]
sample_kbc = []
eaa_kbc = []
offline_fs_kbc = ["openssl"]
offline_sev_kbc = ["openssl"]