summary refs log tree commit diff
path: root/src/Cargo.lock
AgeCommit message (Collapse)AuthorLines
2018-09-21[beta] Update the `libgit2-sys` crateAlex Crichton-4/+4
This commit is an attempt to fix an issue [1] in the latest betas for MinGW where it appears that `libgit2` is no longer functional and always returns errors. The attempted fix [2] has been published as a new version of `libgit2-sys`, so this updates the beta branch to using that commit to get it out and see if it fixes beta. [1]: https://github.com/rust-lang/rust/issues/54206#issuecomment-423506019 [2]: https://github.com/alexcrichton/git2-rs/commit/9c1604ef7abbbdf4a2312f18c0e60370961a14b2
2018-09-20[beta] Update some `*-sys` dependencies of Cargo/RLSAlex Crichton-36/+35
This is a backport of #54301 to the beta branch
2018-09-17update miriRalf Jung-2/+24
2018-09-15Update submodules to include rust-lang-nursery/rust-clippy#3189 and ↵Eduard-Mihai Burtescu-9/+10
rust-lang-nursery/rls#1054.
2018-09-09merge cargo changes done by https://github.com/rust-lang/rust/pull/53935/Eric Huss-4/+4
(done by matthiaskrgr, but I authored ehuss)
2018-09-08Update `petgraph` dependency to 0.4.13Gabriel Majeri-3/+3
This fixes building `bootstrap` using a local Rust nightly.
2018-09-07update clippy submoduleMatthias Krüger-0/+16
updates to cafef7b576203f166add9ed143979d9775c25219
2018-09-04Introduce Custom Test FrameworksJohn Renner-0/+1
2018-09-04Breaking change upgradesMark Rousskov-8/+42
2018-09-04Update Rustfmt to 0.99.4Igor Matuszewski-41/+47
This pulls the same version of rustc-ap-* libs as RLS does.
2018-08-31Always add all modules to the global ThinLTO module analysis when compiling ↵Michael Woerister-0/+11
incrementally.
2018-08-29Update clippy submoduleOliver Schneider-2/+0
2018-08-29Remove `AccumulateVec` and its uses.Nicholas Nethercote-0/+1
It's basically just a less capable version of `SmallVec`.
2018-08-27Update clippyJohn Kåre Alsaker-15/+2
2018-08-25Update Cargo submoduleAlex Crichton-401/+421
Also update Cargo's dependencies while we're at it
2018-08-25Bump serde_json 1.0.24 -> 1.0.25Igor Matuszewski-136/+34
This fixes 'cannot find macro `json_internal!` in this scope' RLS compilation error in Rust CI, presumably due to a local macro fix in serde_json 1.0.25 (https://github.com/serde-rs/json/commit/e40cbad70b39a0dd7975be8e5ad9018e2d45f791)
2018-08-23Use optimized SmallVec implementationIgor Gutorov-4/+14
2018-08-22Rollup merge of #53442 - staktrace:rlsbump, r=nrcGuillaume Gomez-1/+11
Update version of rls-data used with save-analysis This part 1/3 for fixing rust-lang/rust#53440.
2018-08-17rustc_resolve: don't allow paths starting with `::crate`.Eduard-Mihai Burtescu-4/+4
2018-08-16Update version of rls-data used with save-analysisKartikaya Gupta-1/+11
This part 1/3 for fixing rust-lang/rust#53440.
2018-08-17Rollup merge of #53377 - cuviper:pointer-elf_size, r=alexcrichtonkennytm-3/+3
std: Use target_pointer_width for BACKTRACE_ELF_SIZE The former code used `target.contains("64")` to detect Elf64 targets, but this is inaccurate in a few cases: - `s390x-unknown-linux-gnu` is 64-bit - `sparcv9-sun-solaris` is 64-bit - `x86_64-unknown-linux-gnux32` is 32-bit Instead the `std` build script can use `CARGO_CFG_TARGET_POINTER_WIDTH` to reliably detect 64-bit targets for libbacktrace. Also update to backtrace-sys 0.1.24 for alexcrichton/backtrace-rs#122.
2018-08-15Rollup merge of #53388 - GuillaumeGomez:fix-links-color, r=frewsxcvGuillaume Gomez-4/+10
Fix links' color Fixes #53375. Problem was coming from the minifier. r? @frewsxcv
2018-08-15Fix links' colorGuillaume Gomez-4/+10
2018-08-14Update cargoEric Huss-21/+43
2018-08-14std: Use target_pointer_width for BACKTRACE_ELF_SIZEJosh Stone-3/+3
The former code used `target.contains("64")` to detect Elf64 targets, but this is inaccurate in a few cases: - `s390x-unknown-linux-gnu` is 64-bit - `sparcv9-sun-solaris` is 64-bit - `x86_64-unknown-linux-gnux32` is 32-bit Instead the `std` build script can use `CARGO_CFG_TARGET_POINTER_WIDTH` to reliably detect 64-bit targets for libbacktrace. Also update to backtrace-sys 0.1.24 for alexcrichton/backtrace-rs#122.
2018-08-14Add lldb to the buildTom Tromey-1/+1
This optionally adds lldb (and clang, which it needs) to the build. Because rust uses LLVM 7, and because clang 7 is not yet released, a recent git master version of clang is used. The lldb that is used includes the Rust plugin. lldb is only built when asked for, or when doing a nightly build on macOS. Only macOS is done for now due to difficulties with the Python dependency.
2018-08-13Move SmallVec and ThinVec out of libsyntaxljedrz-0/+1
2018-08-11Update RLSNick Cameron-1/+1
2018-08-09Move rustc::util::fs into separate (new) crateMark Rousskov-0/+6
2018-08-08Update libc to 0.2.43 in Cargo.lockLinus Färnstrand-43/+43
2018-08-08Update RLS and RustfmtNick Cameron-142/+42
2018-08-06Building librustc_codegen_llvm in a separate directoryMark Rousskov-20/+0
This allows clearing it out and building it separately from the compiler. Since it's essentially a different and separate crate this makes sense to do, each cargo invocation should generally happen in its own directory.
2018-08-05Update rustfmt and RLSNick Cameron-6/+6
2018-08-03Move unused trait functions to inherent functionsMark Rousskov-0/+1
2018-08-03Store concrete crate stores where possibleMark Rousskov-0/+1
2018-08-03Move validate_crate_name to rustc_metadataMark Rousskov-0/+10
2018-08-02Update Cargo submoduleAlex Crichton-34/+149
Bring in some fixes for `cargo fix` notably
2018-08-01Rollup merge of #52732 - SimonSapin:spring, r=Mark-SimulacrumPietro Albini-9/+0
Remove unstable and deprecated APIs
2018-07-30Remove the unstable std_unicode crate, deprecated since 1.27Simon Sapin-9/+0
Its former contents are now in libcore.
2018-07-30rustc_llvm: move to rustc_codegen_llvm::llvm.Irina Popa-3/+0
2018-07-29Update miri submoduleOliver Schneider-4/+4
2018-07-29Update RLS and rustfmt.kennytm-171/+210
2018-07-28Update the Cargo submodule and rustfixAlex Crichton-38/+46
Should hopefully bring in a few more `cargo fix`-related fixes.
2018-07-27revert accidental atty downgradeRalf Jung-7/+7
2018-07-25simplify `NLLRegionVariableOrigin`Niko Matsakis-7/+7
2018-07-22Fix color detection for Windows msys terminals.Eric Huss-7/+7
2018-07-20Update clippyManish Goregaokar-10/+10
2018-07-18Update Cargo submoduleAlex Crichton-171/+185
2018-07-17update miriRalf Jung-2/+25
2018-07-15Update clippy and rlsOliver Schneider-22/+17