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.

Signed-off-by: Peter Fang <[email protected]>
  • Loading branch information
peterfang authored and jyao1 committed Jul 12, 2024
1 parent 4c3ed81 commit d256700
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.14.9", default-features = false, features = ["instructions"] }

[features]
default = []
Expand Down

0 comments on commit d256700

Please sign in to comment.