Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Closed
Show file tree
Hide file tree
Changes from 2 commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
5287885
use randSecure and randABytes
bpangWR Sep 10, 2019
83e7976
Merge pull request #20 from Wind-River/rand
BaoshanPang Sep 11, 2019
5e8bf87
Merge pull request #21 from rust-lang/master
BaoshanPang Sep 11, 2019
b731e11
declare EnvKey before use to fix build error
bpangWR Sep 11, 2019
a8c5f90
Fix inconsistent link formatting.
tomasz-rozanski Sep 11, 2019
223600a
Guarantee vec.clear/truncate is O(1) for trivial types
kornelski Sep 11, 2019
08fa803
Merge pull request #22 from Wind-River/master_002
BaoshanPang Sep 12, 2019
612c394
Trim rustc-workspace-hack
mati865 Sep 11, 2019
baf97b7
Add long error explanation for E0493
GuillaumeGomez Sep 11, 2019
0ad141c
update tests
GuillaumeGomez Sep 12, 2019
34d71f1
Ban non-extern rust intrinsics
Mark-Simulacrum Sep 12, 2019
a47a5c3
typo fix
Sep 9, 2019
69112a2
Add self to .mailmap
ollie27 Sep 13, 2019
3f920e5
Rollup merge of #64372 - Wind-River:master, r=alexcrichton
Centril Sep 13, 2019
51ea8e6
Rollup merge of #64375 - kornelski:vecdrop, r=rkruppe
Centril Sep 13, 2019
1059ddd
Rollup merge of #64377 - GuillaumeGomez:E0493, r=estebank
Centril Sep 13, 2019
f4ec1f0
Rollup merge of #64378 - Rosto75:master, r=jonas-schievink
Centril Sep 13, 2019
1fb1b93
Rollup merge of #64384 - mati865:tools_hack, r=alexcrichton
Centril Sep 13, 2019
12ee41c
Rollup merge of #64393 - Wind-River:master_002_envKey, r=alexcrichton
Centril Sep 13, 2019
0bba7ad
Rollup merge of #64406 - Mark-Simulacrum:error-unknown-intrinsic, r=C…
Centril Sep 13, 2019
6143b15
Rollup merge of #64423 - ollie27:mailmap, r=Mark-Simulacrum
Centril Sep 13, 2019
bdc6271
Rollup merge of #64425 - guanqun:typo-fix, r=matthewjasper
Centril Sep 13, 2019
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions Cargo.lock
Original file line number Diff line number Diff line change
Expand Up @@ -3256,13 +3256,9 @@ version = "1.0.0"
dependencies = [
"byteorder",
"crossbeam-utils 0.6.5",
"parking_lot 0.7.1",
"rand 0.6.1",
"scopeguard 0.3.3",
"serde",
"serde_json",
"smallvec",
"syn 0.15.35",
"winapi 0.3.6",
]

Expand Down
10 changes: 0 additions & 10 deletions src/tools/rustc-workspace-hack/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,6 @@ path = "lib.rs"
# For documentation about what this is and why in the world these dependencies
# are appearing, see `README.md`.

[build-dependencies]
# Currently Cargo/RLS depend on `failure` which depends on `synstructure` which
# enables this feature. Clippy, however, does not depend on anything that
# enables this feature. Enable it unconditionally.
syn = { version = "0.15", features = ['extra-traits'] }

[target.'cfg(windows)'.dependencies.winapi]
version = "0.3"
features = [
Expand Down Expand Up @@ -65,14 +59,10 @@ features = [
[dependencies]
curl-sys = { version = "0.4.13", features = ["http2", "libnghttp2-sys"], optional = true }
crossbeam-utils = { version = "0.6.5", features = ["nightly"] }
parking_lot = { version = "0.7", features = ['nightly'] }
rand = { version = "0.6.1", features = ["i128_support"] }
serde = { version = "1.0.82", features = ['derive'] }
serde_json = { version = "1.0.31", features = ["raw_value"] }
smallvec = { version = "0.6", features = ['union', 'may_dangle'] }
scopeguard = { version = "0.3.3", features = ["use_std", "default"] }
byteorder = { version = "1.2.7", features = ["i128"] }
syn = { version = "0.15.35", features = ["extra-traits", "full"] }


[target.'cfg(not(windows))'.dependencies]
Expand Down