| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2020-07-27 | mv std libs to library/ | mark | -14/+0 | |
| 2019-11-29 | Format liballoc with rustfmt | David Tolnay | -4/+8 | |
| 2019-07-05 | Replace SliceConcatExt trait with inherent methods and SliceConcat helper trait | Simon Sapin | -1/+0 | |
| Before this change `SliceConcatExt` was an unstable extension trait with stable methods. It was in the libstd prelude, so that its methods could be used on the stable channel. This replaces it with inherent methods, which can be used without any addition to the prelude. Since the methods are stable and very generic (with for example a return type that depends on the types of parameters), an helper trait is still needed. But now that trait does not need to be in scope for the methods to be used. Removing this depedency on the libstd prelude allows the methods to be used in `#![no_std]` crate that use liballoc, which does not have its own implicitly-imported prelude. | ||||
| 2019-03-05 | Rename the feature gate for alloc::prelude | Simon Sapin | -6/+6 | |
| … to separate it from that of the crate. New tracking issue: https://github.com/rust-lang/rust/issues/58935 | ||||
| 2019-03-05 | Move alloc::prelude::* to alloc::prelude::v1, make alloc a subset of std | Simon Sapin | -0/+11 | |
| This was one of the unresolved questions of https://github.com/rust-lang/rfcs/pull/2480. As the RFC says this is maybe not useful in the sense that we are unlikely to ever have a second version, but making the crate a true subset makes one less issue to think about if we stabilize it and later want to merge standard library crates and have Cargo feature flags to enable or disable parts of the `std` crate. See also discussion in https://github.com/rust-lang/rust/pull/58175 | ||||
