Skip to content

Commit d4b09bb

Browse files
committed
attest-time: migrate simple benchmarking tools from vm-attest-proto
1 parent 416fe7b commit d4b09bb

6 files changed

Lines changed: 572 additions & 10 deletions

File tree

Cargo.lock

Lines changed: 108 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
members = [
44
"attest-data",
55
"attest-mock",
6+
"attest-time",
67
"barcode",
78
"dice-cert-tmpl",
89
"dice-mfg",
@@ -17,8 +18,10 @@ anyhow = { version = "1.0.100", default-features = false }
1718
attest.path = "attest"
1819
chrono = { version = "0.4.42", default-features=false }
1920
clap = { version = "4.5.51", features = ["derive", "env"] }
21+
clap-verbosity = "2.1.0"
2022
const-oid = { version = "0.9.6", default-features = false }
2123
corncobs = "0.1"
24+
ctrlc = "3.5.1"
2225
der = { version = "0.7.10", default-features = false }
2326
ecdsa = { version = "0.16", default-features = false }
2427
ed25519-dalek = { version = "2.1", default-features = false }

attest-time/Cargo.toml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
[package]
2+
name = "attest-time"
3+
version = "0.1.0"
4+
edition = "2024"
5+
6+
[dependencies]
7+
anyhow = { workspace = true, features = ["std"] }
8+
clap.workspace = true
9+
clap-verbosity.workspace = true
10+
ctrlc.workspace = true
11+
dice-verifier = { path = "../verifier", features = ["ipcc"] }
12+
env_logger.workspace = true
13+
log.workspace = true

0 commit comments

Comments
 (0)