x86 0.52.0

Library to program x86 (amd64) hardware. Contains x86 specific data structure descriptions, data-tables, as well as convenience function to call assembly instructions typically not exposed in higher level languages.
Documentation
# See
# https://docs.github.com/en/free-pro-team@latest/github/administering-a-repository/enabling-and-disabling-version-updates
# for details

version: 2
updates:
  # Enable crate version updates for the main crate
  - package-ecosystem: "cargo"
    # Look `Cargo.toml` in the repository root
    directory: "/"
    # Check for updates every day (weekdays)
    schedule:
      interval: "daily"
  # Enable crate version updates for x86test directory
  - package-ecosystem: "cargo"
    # Look `Cargo.toml` in the repository root
    directory: "/x86test"
    # Check for updates every day (weekdays)
    schedule:
      interval: "daily"
  # Enable version updates for Github Actions
  - package-ecosystem: "github-actions"
    # Set to `/` to check the Actions used in `.github/workflows`
    directory: "/"
    # Check for updates every day (weekdays)
    schedule:
      interval: "daily"