Skip to content

Commit fac3031

Browse files
committed
fix: add simulator event log dependency
1 parent 25f9f3e commit fac3031

3 files changed

Lines changed: 3 additions & 1 deletion

File tree

dstack/Cargo.lock

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dstack/guest-agent-simulator/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,3 +26,4 @@ ra-tls = { workspace = true, features = ["quote"] }
2626
dstack-guest-agent = { path = "../guest-agent" }
2727
dstack-guest-agent-rpc.workspace = true
2828
dstack-types.workspace = true
29+
cc-eventlog.workspace = true

dstack/guest-agent-simulator/src/simulator.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ pub fn simulated_attest_response(
5757
let mut attestation =
5858
maybe_patch_report_data(attestation, report_data, patch_report_data, "attest");
5959
if let Some(event_log) = attestation.platform.tdx_event_log_mut() {
60-
dstack_attest::ccel::tdx::fill_v2_preimages(event_log);
60+
cc_eventlog::tdx::fill_v2_preimages(event_log);
6161
}
6262
Ok(AttestResponse {
6363
attestation: VersionedAttestation::V1 { attestation }.to_bytes()?,

0 commit comments

Comments
 (0)