Skip to content

Commit 76617af

Browse files
davidskidmorejyao1
authored andcommittedFeb 5, 2025
Fix cargo build warnings.
There are some manifest warnings due to "unused manifest key" because of misspelled keywords. This change addresses those warnings. Signed-off-by: David Skidmore <[email protected]>
1 parent 2f1d1e1 commit 76617af

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
 

‎src/devices/vsock/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ log = "0.4.13"
1616
rust_std_stub = { path = "../../std-support/rust-std-stub" }
1717
spin = "0.9.2"
1818
tdx-tdcall = { path = "../../../deps/td-shim/tdx-tdcall" }
19-
td-payload = { path = "../../../deps/td-shim/td-payload", feature = "tdx" }
19+
td-payload = { path = "../../../deps/td-shim/td-payload", features = ["tdx"] }
2020
td-shim-interface = { path = "../../../deps/td-shim/td-shim-interface", optional = true }
2121

2222
[features]

‎tools/migtd-hash/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@ clap = { version = "4.0", features = ["derive"] }
1111
crypto = { path = "../../src/crypto" }
1212
migtd = { path = "../../src/migtd", default-features = false }
1313
serde_json = "1.0"
14-
td-shim-tools = { path = "../../deps/td-shim/td-shim-tools", default-feature = false, features = ["tee"] }
14+
td-shim-tools = { path = "../../deps/td-shim/td-shim-tools", default-features = false, features = ["tee"] }
1515
td-shim-interface = { path = "../../deps/td-shim/td-shim-interface" }

0 commit comments

Comments
 (0)