Skip to content

Commit

Permalink
Auto merge of rust-lang#68221 - ehuss:update-cargo-rls, r=alexcrichton
Browse files Browse the repository at this point in the history
Update cargo rls

## cargo

12 commits in 6e1ca924a67dd1ac89c33f294ef26b5c43b89168..ad3dbe10e1e654fb1f032a5dd9481d7cbaa00d65
2020-01-06 19:11:37 +0000 to 2020-01-13 21:37:15 +0000
- Add named config profiles. (rust-lang/cargo#7750)
- Make cargo-rustc crate-type-aware (rust-lang/cargo#7755)
- Rename `Kind` (rust-lang/cargo#7791)
- Update bash completion (rust-lang/cargo#7789)
- Add another curl spurious network error (rust-lang/cargo#7788)
- Some small tweaks around error in configuration (rust-lang/cargo#7783)
- Fix tests with `url` crate update (rust-lang/cargo#7787)
- Fix .gitignore of Cargo.lock in a subdirectory. (rust-lang/cargo#7779)
- Bump crates-io (rust-lang/cargo#7778)
- Migrate from the `failure` crate to `anyhow` (rust-lang/cargo#7776)
- Fix several needless_borrow clippy lints. (rust-lang/cargo#7771)
- Fix some links (rust-lang/cargo#7770)

## rls

2 commits in 7c0489c5ff4f5c594e65a3b22efd9ce373deab9b..b27e1173969639448cd2e486b1c5f0fcb1b3b17c
2020-01-04 20:15:37 +0100 to 2020-01-13 11:40:20 +0100
- Update Cargo (rust-lang/rls#1613)
- Rustup to rust-lang#68024 (rust-lang/rls#1612)
  • Loading branch information
bors committed Jan 15, 2020
2 parents 632387f + 55cb505 commit c74353c
Show file tree
Hide file tree
Showing 5 changed files with 29 additions and 11 deletions.
32 changes: 25 additions & 7 deletions Cargo.lock
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,12 @@ dependencies = [
"winapi 0.3.8",
]

[[package]]
name = "anyhow"
version = "1.0.26"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7825f6833612eb2414095684fcf6c635becf3ce97fe48cf6421321e93bfbd53c"

[[package]]
name = "arc-swap"
version = "0.3.7"
Expand Down Expand Up @@ -277,6 +283,7 @@ dependencies = [
name = "cargo"
version = "0.43.0"
dependencies = [
"anyhow",
"atty",
"bytesize",
"cargo-platform",
Expand All @@ -290,7 +297,6 @@ dependencies = [
"curl",
"curl-sys",
"env_logger 0.7.1",
"failure",
"filetime",
"flate2",
"fs2",
Expand Down Expand Up @@ -318,7 +324,7 @@ dependencies = [
"pretty_env_logger",
"remove_dir_all",
"rustc-workspace-hack",
"rustfix",
"rustfix 0.5.0",
"same-file",
"semver",
"serde",
Expand Down Expand Up @@ -590,7 +596,7 @@ dependencies = [
"log",
"miow 0.3.3",
"regex",
"rustfix",
"rustfix 0.5.0",
"serde",
"serde_json",
"walkdir",
Expand All @@ -610,7 +616,7 @@ dependencies = [
"log",
"miow 0.3.3",
"regex",
"rustfix",
"rustfix 0.4.6",
"serde",
"serde_derive",
"serde_json",
Expand Down Expand Up @@ -694,10 +700,10 @@ checksum = "b3a71ab494c0b5b860bdc8407ae08978052417070c2ced38573a9157ad75b8ac"

[[package]]
name = "crates-io"
version = "0.30.0"
version = "0.31.0"
dependencies = [
"anyhow",
"curl",
"failure",
"percent-encoding 2.1.0",
"serde",
"serde_derive",
Expand Down Expand Up @@ -2936,13 +2942,13 @@ dependencies = [
name = "rls"
version = "1.41.0"
dependencies = [
"anyhow",
"cargo",
"cargo_metadata 0.8.0",
"clippy_lints",
"crossbeam-channel",
"difference",
"env_logger 0.7.1",
"failure",
"futures",
"heck",
"home",
Expand Down Expand Up @@ -4005,6 +4011,18 @@ dependencies = [
"serde_json",
]

[[package]]
name = "rustfix"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "804b11883a5ce0ad0378fbf95a8dea59ee6b51c331a73b8f471b6bdaa3bd40c1"
dependencies = [
"anyhow",
"log",
"serde",
"serde_json",
]

[[package]]
name = "rustfmt-config_proc_macro"
version = "0.2.0"
Expand Down
2 changes: 1 addition & 1 deletion src/tools/cargo
Submodule cargo updated 113 files
2 changes: 1 addition & 1 deletion src/tools/compiletest/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ log = "0.4"
regex = "1.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
rustfix = "0.4.1"
rustfix = "0.5.0"
lazy_static = "1.0"
walkdir = "2"

Expand Down
2 changes: 1 addition & 1 deletion src/tools/rls
Submodule rls updated from 7c0489 to b27e11
2 changes: 1 addition & 1 deletion src/tools/rustc-workspace-hack/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ serde_json = { version = "1.0.31", features = ["raw_value"] }
smallvec-0_6 = { package = "smallvec", version = "0.6", features = ['union', 'may_dangle'] }
smallvec = { version = "1.0", features = ['union', 'may_dangle'] }
url = { version = "2.0", features = ['serde'] }
syn = { version = "0.15", features = ['full'] }
syn = { version = "0.15", features = ['full', 'extra-traits'] }

[target.'cfg(not(windows))'.dependencies]
openssl = { version = "0.10.12", optional = true }
Expand Down

0 comments on commit c74353c

Please sign in to comment.