gz / rust-x86

Rust library to use x86 (amd64) specific functionality and registers.
https://docs.rs/x86
MIT License
303 stars 63 forks source link

Update x86 requirement from 0.50 to 0.52 in /x86test #146

Closed dependabot[bot] closed 1 year ago

dependabot[bot] commented 1 year ago

Updates the requirements on x86 to permit the latest version.

Changelog

Sourced from x86's changelog.

[0.52.0] - 2022-10-18

  • Add user-defined, hardware ignored bits to page-table flags.

[0.51.0] - 2022-07-15

  • Implement core::iter::Step for PAddr, VAddr, IOAddr types. This currently requires nightly so added a unstable Cargo feature to enable it conditionally.

[0.50.0] - 2022-06-29

  • rdtscp now returns a tuple in the form of (cycles: u64, aux: u32), where cycles is the cycle count (as returned by this function in previous versions) and aux is the value of IA32_TSC_AUX -- which also gets read-out by rdtscp. If one prefers to use the old signature, the recommendation is to replace calls for x86::time::rdtscp with core::arch::x86_64::__rdtscp. Fixes #124.

[0.49.0] - 2022-06-03

  • Removed x86::its64::segmentation::fs_deref(): Users should replace calls to fs_deref with the more general x86::bits64::segmentation::fs_deref! macro. fs_deref!(0) is equivalent to fs_deref().
  • Removed x86::bits64::segmentation::gs_deref(): Users should replace calls to gs_deref with the more general x86::bits64::segmentation::gs_deref! macro. gs_deref!(0) is equivalent to gs_deref().

[0.48.0] - 2022-05-23

  • Added const new constructor for X2APIC struct
  • Use fully qualified asm! import for int! macro so clients do no longer need to import asm! themselves.
Commits


Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)