-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
59 lines (55 loc) · 1.61 KB
/
Copy pathCargo.toml
File metadata and controls
59 lines (55 loc) · 1.61 KB
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
[package]
name = "ev-enclave"
version = "1.0.5"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
tokio = { version = "1.45.0", features = ["rt","rt-multi-thread","macros","fs"] }
tokio-util = { version = "0.7.4", features = ["full"] }
bytes = "1"
itertools = "0.14.0"
tempfile = "3.3.0"
futures-core = "0.3.21"
futures = "0.3.21"
human-panic = "1.0.3"
log = "0.4.17"
env_logger = "0.9.0"
atty = "0.2.14"
serde = { version = "1.0.152", features = ["derive"] }
serde_json = "1.0.91"
thiserror = "1.0.31"
rcgen = { version = "0.13.2", features = ["pem"] }
chrono = "0.4.19"
toml = "0.5.9"
reqwest = { version = "0.11.12", features = ["json", "stream"] }
zip = { version = "2.3.0", default-features = false }
async-trait = "0.1.57"
indicatif = { version = "0.17.1" }
dialoguer = "0.10.2"
async-stream = "0.3.3"
tokio-stream = "0.1.9"
minus = { version = "5.6.1", features = ["static_output"] }
exitcode = "1.1.2"
tokio-rustls = { version = "0.24", features = ["dangerous_configuration"] }
x509-parser = "0.14.0"
hex = "0.4.3"
axum = "0.5.16"
serde_cbor = "0.11"
base64 = "0.13.0"
aws-nitro-enclaves-image-format = "0.2.0"
sha2 = "0.9.9"
git2 = "0.20"
version-compare = "0.1.1"
regex = "1.8.1"
semver = "1.0.20"
pcr-sign = { path = "../pcr-sign", optional=true }
elliptic-curve = { version = "0.13.8", features = ["pkcs8"] }
attestation-doc-validation = "0.7.4"
clap = { version = "4.5.38", features = ["derive"] }
common = { path = "../common" }
[dev-dependencies]
tokio-test = "0.4.2"
serial_test = "2.0.0"
mockall = "0.11.4"
[features]
pcr_signature = ["pcr-sign"]