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

Remove more deprecated functionality #24636

Merged
merged 5 commits into from
Apr 22, 2015

Commits on Apr 21, 2015

  1. std: Remove deprecated AsOsStr/Str/AsSlice traits

    Cleaning out more deprecated items
    alexcrichton committed Apr 21, 2015
    Configuration menu
    Copy the full SHA
    69ded69 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    e091ba3 View commit details
    Browse the repository at this point in the history
  3. std: Remove deprecated/unstable num functionality

    This commit removes all the old casting/generic traits from `std::num` that are
    no longer in use by the standard library. This additionally removes the old
    `strconv` module which has not seen much use in quite a long time. All generic
    functionality has been supplanted with traits in the `num` crate and the
    `strconv` module is supplanted with the [rust-strconv crate][rust-strconv].
    
    [rust-strconv]: https://github.com/lifthrasiir/rust-strconv
    
    This is a breaking change due to the removal of these deprecated crates, and the
    alternative crates are listed above.
    
    [breaking-change]
    alexcrichton committed Apr 21, 2015
    Configuration menu
    Copy the full SHA
    eeb9488 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    0791f9f View commit details
    Browse the repository at this point in the history
  5. std: Bring back f32::from_str_radix as an unstable API

    This API was exercised in a few tests and mirrors the `from_str_radix`
    functionality of the integer types.
    alexcrichton committed Apr 21, 2015
    Configuration menu
    Copy the full SHA
    a568a7f View commit details
    Browse the repository at this point in the history