-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (31 loc) · 1.05 KB
/
Cargo.toml
File metadata and controls
33 lines (31 loc) · 1.05 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
[package]
name = "verifier-cli"
version = "0.1.0"
edition = "2021"
description = "A CLI tool for getting and verifying attestations from the RoT."
license = "MPL-2.0"
[dependencies]
anyhow = { workspace = true, features = ["std"] }
attest-data = { path = "../attest-data", features = ["std"] }
clap.workspace = true
dice-mfg-msgs = { path = "../dice-mfg-msgs", features = ["std"] }
ed25519-dalek = { workspace = true, features = ["std"] }
hubpack.workspace = true
log.workspace = true
p384 = { workspace = true, default-features = true }
pem-rfc7468 = { workspace = true, features = ["alloc", "std"] }
rats-corim.workspace = true
sha3.workspace = true
slog.workspace = true
slog-async.workspace = true
slog-envlogger.workspace = true
slog-stdlog.workspace = true
slog-term.workspace = true
tempfile.workspace = true
dice-verifier.path = "../verifier"
x509-cert = { workspace = true, default-features = true }
serde_json.workspace = true
tokio = { workspace = true, features = ["full"] }
[features]
ipcc = ["dice-verifier/ipcc"]
sled-agent = ["dice-verifier/sled-agent"]