forked from confidential-containers/attestation-agent
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
39 lines (37 loc) · 966 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
36
37
38
39
[workspace]
members = [
"app",
"lib",
"kbc",
"kbs_protocol",
"attester",
"deps/resource_uri",
"deps/crypto",
"deps/sev",
"coco_keyprovider",
"test-binaries"
]
[workspace.package]
version = "0.1.0"
authors = ["The Confidential Container Authors"]
description = "Attestation Agent"
documentation = "https://github.com/confidential-containers/attestation-agent"
edition = "2021"
[workspace.dependencies]
anyhow = "1.0"
async-trait = "0.1.56"
base64 = "0.13.0"
cfg-if = "1.0.0"
clap = "3.2.5"
const_format = "0.2.30"
env_logger = "0.9.0"
# TODO: change this to "0.3", once released
kbs-types = { git = "https://github.com/mkulke/kbs-types", branch = "mkulke/add-az-snp-vtpm-tee-on-v0.2" }
lazy_static = "1.4.0"
log = "0.4.14"
resource_uri = { path = "deps/resource_uri" }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
strum = { version = "0.24.0", features = ["derive"] }
url = "2.3.1"
zeroize = "1.5.7"