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 <[email protected]>
  • Loading branch information
peterfang committed Jul 12, 2024
1 parent d209707 commit 045f08e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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 045f08e

Please sign in to comment.