about summary refs log tree commit diff
path: root/src/tools/rustc-workspace-hack
AgeCommit message (Collapse)AuthorLines
2020-05-05Unify winapi features for toolsTyler Mandry-1/+2
2020-05-05Unify some syn 1.0 et al. features for toolsIgor Matuszewski-1/+4
2020-04-05rustc-workspace-hack: Account for upgraded crossbeam-utils 0.7Igor Matuszewski-1/+1
2020-01-14Update cargo, rlsEric Huss-1/+1
2019-12-26Add unicode-normalization to whitelist.Charles Lew-1/+2
2019-10-31Adjust rustc-workspace-hackmsizanoen1-1/+1
2019-10-01Update `Cargo.lock` for cargo updateAlex Crichton-0/+1
2019-09-18Update CargoAaron Hill-0/+1
This pulls in https://github.com/rust-lang/cargo/pull/7159, which ensures that documenting proc macros works correctly.
2019-09-16with byteorder 1.3, the i128 feature is a NOPRalf Jung-1/+0
2019-09-12Trim rustc-workspace-hackMateusz Mikuła-10/+0
2019-07-30Enable nightly feature for crossbeam-utils depIgor Matuszewski-0/+1
Last two commits bumped rustc-ap-* crates which also transitively updated rustc_data_structures. That crate enables the "nightly" whereas Cargo's dep does not hence why we need to unify the features to deduplicate the artifacts.
2019-06-17Add `syn` to workspace hack.Eric Huss-2/+3
Cargo's syn now has the `full` feature, so add it here to keep it in sync.
2019-06-05rustbuild: Include `rustfmt` in deduplicated dependenciesAlex Crichton-1/+8
Currently `rustfmt` is excluded from the "don't build dependencies twice" check but it's currently building dependencies twice! Namely big dependencies like `rustc-ap-syntax` are built once for rustfmt and once for the RLS. This commit includes `rustfmt` in these checks and then fixes the resulting feature mismatches for winapi.
2019-05-25std: Depend on `backtrace` crate from crates.ioAlex Crichton-0/+1
This commit removes all in-tree support for generating backtraces in favor of depending on the `backtrace` crate on crates.io. This resolves a very longstanding piece of duplication where the standard library has long contained the ability to generate a backtrace on panics, but the code was later extracted and duplicated on crates.io with the `backtrace` crate. Since that fork each implementation has seen various improvements one way or another, but typically `backtrace`-the-crate has lagged behind libstd in one way or another. The goal here is to remove this duplication of a fairly critical piece of code and ensure that there's only one source of truth for generating backtraces between the standard library and the crate on crates.io. Recently I've been working to bring the `backtrace` crate on crates.io up to speed with the support in the standard library which includes: * Support for `StackWalkEx` on MSVC to recover inline frames with debuginfo. * Using `libbacktrace` by default on MinGW targets. * Supporting `libbacktrace` on OSX as an option. * Ensuring all the requisite support in `backtrace`-the-crate compiles with `#![no_std]`. * Updating the `libbacktrace` implementation in `backtrace`-the-crate to initialize the global state with the correct filename where necessary. After reviewing the code in libstd the `backtrace` crate should be at exact feature parity with libstd today. The backtraces generated should have the same symbols and same number of frames in general, and there's not known divergence from libstd currently. Note that one major difference between libstd's backtrace support and the `backtrace` crate is that on OSX the crates.io crate enables the `coresymbolication` feature by default. This feature, however, uses private internal APIs that aren't published for OSX. While they provide more accurate backtraces this isn't appropriate for libstd distributed as a binary, so libstd's dependency on the `backtrace` crate explicitly disables this feature and forces OSX to use `libbacktrace` as a symbolication strategy. The long-term goal of this refactoring is to eventually move us towards a world where we can drop `libbacktrace` entirely and simply use Gimli and the surrounding crates for backtrace support. That's still aways off but hopefully will much more easily enabled by having the source of truth for backtraces live in crates.io! Procedurally if we go forward with this I'd like to transfer the `backtrace-rs` crate to the rust-lang GitHub organization as well, but I figured I'd hold off on that until we get closer to merging.
2019-05-09Switch to SPDX 2.1 license expressionDavid Tolnay-1/+1
According to the Cargo Reference: https://doc.rust-lang.org/cargo/reference/manifest.html > This is an SPDX 2.1 license expression for this package. Currently > crates.io will validate the license provided against a whitelist of > known license and exception identifiers from the SPDX license list > 2.4. Parentheses are not currently supported. > > Multiple licenses can be separated with a `/`, although that usage > is deprecated. Instead, use a license expression with AND and OR > operators to get more explicit semantics.
2019-04-03try to fix rand feature flagsRalf Jung-1/+1
2019-02-22Update parking_lot to 0.7Bastien Orivel-1/+1
Unfortunately this'll dupe parking_lot until the data_structures crate is published and be updated in rls in conjunction with crossbeam-channel
2019-02-18Update Cargo.toml of rustc-workspace-hackflip1995-1/+1
2019-02-08rustc-workspace-hack => 2018Taiki Endo-0/+1
2019-01-22submodules: update rls from ae0d89a to c9d25b6Matthias Krüger-0/+1
Changes: ```` Remove state.analysis due to Rust PR #57476 Improve missing nightly readme info Bump languageserver-types to v0.54.0 and renam crate name to lsp-types Delete bors.toml Fix tests Fix https://github.com/rust-lang/rls/issues/1231 Implement asynchronous message reading Use typed requests Implement Tokio-based test LSP client Update README.md to account for Travis url change Simplify wait_for_all recv calls Update dependencies Revert NLL bug workaround Remove old test_data entry in .gitignore Reorganize some tests Don't test RLS binary target directly Move tooltip tests to integration tests Simplify tooltip test harness Only use FIXTURES_DIR to determine fixtures Remove src/test/mod.rs Centralise FIXTURES_DIR across unit and integration tests Move lens test to tests/ Suppress unused warnings in tests/* Beautify main.rs and lib.rs WIP: Move tests Move src/test/harness to tests/support/harness Split RLS into bin/lib Update Clippy Change all mentions of `rls-preview` to `rls` Make config mutex borrow scope explicit Fallback to racer definition ```` Fixes rls build.
2019-01-08More feature whitelisting of winapiOliver Scherer-0/+3
2019-01-08Adjust cargo workspace hack to miri/cargo interactionsOliver Scherer-1/+4
2018-12-28Update cargo, rls, miriEric Huss-0/+1
2018-12-25Remove licensesMark Rousskov-10/+0
2018-12-10Update Cargo submodule and its dependenciesAlex Crichton-2/+4
Hopefully just another routine update! So far this starts to enable the `std::arch` in stage0 builds of rustc. This means that we may need stage0/not(stage0) in stdsimd itself, but more and more code is starting to use `std::arch` so I think it's time to start shifting the balance of work here.
2018-12-08Reduce the numbers of syn versions compiled from 4 to 2Bastien Orivel-1/+1
The last remaining one comes from mdbook. Unfortunately updating it breaks everything
2018-11-09Update Cargo submoduleAlex Crichton-1/+1
Hopefully a relatively routine update!
2018-10-20Update Cargo, build curl/OpenSSL statically via featuresAlex Crichton-6/+11
In addition to to updating Cargo's submodule and Cargo's dependencies, this also updates Cargo's build to build OpenSSL statically into Cargo as well as libcurl unconditionally. This removes OpenSSL build logic from the bootstrap code, and otherwise requests that even on OSX we build curl statically.
2018-10-04Add features to the workspace hackOliver S̶c̶h̶n̶e̶i̶d̶e̶r Scherer-1/+5
2018-10-03Update clippyManish Goregaokar-0/+4
2018-08-29Add more features to the workspace so that all tools pick up on itOliver Schneider-0/+3
2018-08-25Update Cargo submoduleAlex Crichton-11/+13
Also update Cargo's dependencies while we're at it
2018-08-02Update Cargo submoduleAlex Crichton-0/+80
Bring in some fixes for `cargo fix` notably