Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Refactor byteorder to std in rustc_middle #75741

Merged
merged 5 commits into from
Sep 5, 2020

Commits on Sep 5, 2020

  1. Refactor byteorder to std in rustc_middle

    Use std::io::{Read, Write} and {to, from}_{le, be}_bytes methods in
    order to remove byteorder from librustc_middle's dependency graph.
    workingjubilee committed Sep 5, 2020
    Configuration menu
    Copy the full SHA
    b97d413 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    74b4eea View commit details
    Browse the repository at this point in the history
  3. Be explicit that we're handling bytes

    Co-authored-by: Aleksey Kladov <aleksey.kladov@gmail.com>
    workingjubilee and matklad committed Sep 5, 2020
    Configuration menu
    Copy the full SHA
    fe2a867 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    dc00eff View commit details
    Browse the repository at this point in the history
  5. Fix big endian read/write

    Co-authored-by: matthewjasper <mjjasper1@gmail.com>
    workingjubilee and matthewjasper committed Sep 5, 2020
    Configuration menu
    Copy the full SHA
    2df552b View commit details
    Browse the repository at this point in the history