about summary refs log tree commit diff
path: root/src/librustc_allocator/Cargo.toml
AgeCommit message (Collapse)AuthorLines
2019-07-24Merge `rustc_allocator` into `libsyntax_ext`Vadim Petrochenkov-19/+0
2019-07-07rustc: Remove `dylib` crate type from most rustc cratesAlex Crichton-1/+0
Now that procedural macros no longer link transitively to libsyntax, this shouldn't be needed any more! This commit is an experiment in removing all dynamic libraries from rustc except for librustc_driver itself. Let's see how far we can get with that!
2019-02-06librustc_allocator => 2018Taiki Endo-0/+1
2018-12-10Upgrade `smallvec` to 0.6.7 and use the new `may_dangle` feature.Nicholas Nethercote-1/+1
2018-08-23Use optimized SmallVec implementationIgor Gutorov-0/+1
2018-08-13Move SmallVec and ThinVec out of libsyntaxljedrz-0/+1
2018-06-24Prohibit global_allocator in submodules for nowMark Mansi-0/+1
- we need to figure out hygiene first - change the test to check that the prohibition works with a good error msg - leaves some comments and debugging code - leaves some of our supposed fixes
2018-04-26rustc_target: move in syntax::abi and flip dependency.Irina Popa-0/+1
2017-07-05rustc: Implement the #[global_allocator] attributeAlex Crichton-0/+15
This PR is an implementation of [RFC 1974] which specifies a new method of defining a global allocator for a program. This obsoletes the old `#![allocator]` attribute and also removes support for it. [RFC 1974]: https://github.com/rust-lang/rfcs/pull/197 The new `#[global_allocator]` attribute solves many issues encountered with the `#![allocator]` attribute such as composition and restrictions on the crate graph itself. The compiler now has much more control over the ABI of the allocator and how it's implemented, allowing much more freedom in terms of how this feature is implemented. cc #27389