Skip to content

Commit

Permalink
Backport: Reduce number of used unstable features of x86_64 crate
Browse files Browse the repository at this point in the history
  • Loading branch information
phil-opp committed Apr 30, 2021
1 parent 7fac0b9 commit 91b56ee
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ required-features = ["binary"]

[dependencies]
xmas-elf = { version = "0.6.2", optional = true }
x86_64 = { version = "0.13.2", optional = true }
x86_64 = { version = "0.13.2", optional = true, default-features = false, features = ["instructions", "inline_asm"] }
usize_conversions = { version = "0.2.0", optional = true }
fixedvec = { version = "0.2.4", optional = true }
bit_field = { version = "0.10.0", optional = true }
Expand Down
2 changes: 1 addition & 1 deletion example-kernel/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ authors = ["Philipp Oppermann <dev@phil-opp.com>"]
edition = "2018"

[dependencies]
x86_64 = "0.13.2"
x86_64 = { version = "0.13.2", default-features = false, features = ["instructions", "inline_asm"] }
2 changes: 1 addition & 1 deletion test-kernel/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ authors = ["Philipp Oppermann <dev@phil-opp.com>"]
edition = "2018"

[dependencies]
x86_64 = "0.13.2"
x86_64 = { version = "0.13.2", default-features = false, features = ["instructions", "inline_asm"] }

0 comments on commit 91b56ee

Please sign in to comment.