Skip to content

Commit

Permalink
tdx-tdcall: remove nightly feature in the x86_64 crate
Browse files Browse the repository at this point in the history
External projects may not always choose to use the Rust nightly
toolchain. Remove the nightly feature in the x86_64 crate to support the
Rust stable toolchain. While we're at it, also bump up the x86_64 crate
version to 0.15.1.

Signed-off-by: Peter Fang <peter.fang@intel.com>
  • Loading branch information
peterfang committed Jul 12, 2024
1 parent 574835f commit 81ce770
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tdx-tdcall/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ lazy_static = { version = "1.0", features = ["spin_no_std"] }
log = "0.4.13"
scroll = { version = "0.10", default-features = false, features = ["derive"] }
spin = "0.9.2"
x86_64 = "0.14.9"
x86_64 = { version = "0.15.1", default-features = false, features = ["instructions"] }

[features]
default = []
Expand Down

0 comments on commit 81ce770

Please sign in to comment.