Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rollup of 7 pull requests #59688

Closed
wants to merge 22 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
f48a5dc
Document std::fs::File close behavior ignoring errors
czipperz Mar 27, 2019
0b170cd
Add cycle_delay_bug to proc macro
Zoxc Mar 29, 2019
da60ffb
Move query definitions over to the proc macro
Zoxc Mar 29, 2019
0128844
Allow unused query arguments
Zoxc Mar 29, 2019
4558068
Update tests
Zoxc Mar 29, 2019
b6ebe1b
Document using `sync_all`
czipperz Apr 2, 2019
7eb2efd
std: Upgrade `compiler_builtins` to fix wasi linkage
alexcrichton Apr 2, 2019
76e82d6
Link to sync_all
czipperz Apr 3, 2019
5e3b1fc
update miri
RalfJung Mar 30, 2019
087999e
try to fix rand feature flags
RalfJung Mar 31, 2019
c75a5a2
update miri
RalfJung Apr 3, 2019
c2e0d7f
Never return uninhabited values at all
cuviper Apr 3, 2019
a969d40
File: Add documentation about dropping to sync_all
czipperz Apr 4, 2019
4c9c2cf
Add description for -Os and -Oz in rustc.1
tesuji Apr 4, 2019
42d652e
Disable stack probing for gnux32.
crlf0710 Apr 4, 2019
a3a0b7f
Rollup merge of #59470 - czipperz:document-fs-file-close, r=dtolnay
Centril Apr 4, 2019
ffa851b
Rollup merge of #59517 - Zoxc:new-queries, r=oli-obk
Centril Apr 4, 2019
3ed8795
Rollup merge of #59555 - RalfJung:miri, r=oli-obk
Centril Apr 4, 2019
3f61060
Rollup merge of #59639 - cuviper:ignore-uninhabited, r=eddyb
Centril Apr 4, 2019
e75499d
Rollup merge of #59643 - alexcrichton:wasi-symbols, r=sanxiyn
Centril Apr 4, 2019
8104751
Rollup merge of #59685 - lzutao:patch-1, r=GuillaumeGomez
Centril Apr 4, 2019
6f28cbf
Rollup merge of #59686 - crlf0710:disable_gnux32_stackprobe, r=luqmana
Centril Apr 4, 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
56 changes: 17 additions & 39 deletions Cargo.lock
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ dependencies = [
name = "alloc"
version = "0.0.0"
dependencies = [
"compiler_builtins 0.1.8 (registry+https:/rust-lang/crates.io-index)",
"compiler_builtins 0.1.9 (registry+https:/rust-lang/crates.io-index)",
"core 0.0.0",
"rand 0.6.1 (registry+https:/rust-lang/crates.io-index)",
"rand_xorshift 0.1.0 (registry+https:/rust-lang/crates.io-index)",
Expand Down Expand Up @@ -107,7 +107,7 @@ version = "0.1.27"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
"cc 1.0.28 (registry+https:/rust-lang/crates.io-index)",
"compiler_builtins 0.1.8 (registry+https:/rust-lang/crates.io-index)",
"compiler_builtins 0.1.9 (registry+https:/rust-lang/crates.io-index)",
"libc 0.2.51 (registry+https:/rust-lang/crates.io-index)",
"rustc-std-workspace-core 1.0.0",
]
Expand Down Expand Up @@ -465,7 +465,7 @@ dependencies = [

[[package]]
name = "compiler_builtins"
version = "0.1.8"
version = "0.1.9"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
"cc 1.0.28 (registry+https:/rust-lang/crates.io-index)",
Expand Down Expand Up @@ -751,7 +751,7 @@ name = "dlmalloc"
version = "0.1.3"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
"compiler_builtins 0.1.8 (registry+https:/rust-lang/crates.io-index)",
"compiler_builtins 0.1.9 (registry+https:/rust-lang/crates.io-index)",
"libc 0.2.51 (registry+https:/rust-lang/crates.io-index)",
"rustc-std-workspace-core 1.0.0",
]
Expand Down Expand Up @@ -917,7 +917,7 @@ name = "fortanix-sgx-abi"
version = "0.3.2"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
"compiler_builtins 0.1.8 (registry+https:/rust-lang/crates.io-index)",
"compiler_builtins 0.1.9 (registry+https:/rust-lang/crates.io-index)",
"rustc-std-workspace-core 1.0.0",
]

Expand Down Expand Up @@ -1769,7 +1769,7 @@ dependencies = [
name = "panic_abort"
version = "0.0.0"
dependencies = [
"compiler_builtins 0.1.8 (registry+https:/rust-lang/crates.io-index)",
"compiler_builtins 0.1.9 (registry+https:/rust-lang/crates.io-index)",
"core 0.0.0",
"libc 0.2.51 (registry+https:/rust-lang/crates.io-index)",
]
Expand All @@ -1779,7 +1779,7 @@ name = "panic_unwind"
version = "0.0.0"
dependencies = [
"alloc 0.0.0",
"compiler_builtins 0.1.8 (registry+https:/rust-lang/crates.io-index)",
"compiler_builtins 0.1.9 (registry+https:/rust-lang/crates.io-index)",
"core 0.0.0",
"libc 0.2.51 (registry+https:/rust-lang/crates.io-index)",
"unwind 0.0.0",
Expand Down Expand Up @@ -1964,7 +1964,7 @@ name = "profiler_builtins"
version = "0.0.0"
dependencies = [
"cc 1.0.28 (registry+https:/rust-lang/crates.io-index)",
"compiler_builtins 0.1.8 (registry+https:/rust-lang/crates.io-index)",
"compiler_builtins 0.1.9 (registry+https:/rust-lang/crates.io-index)",
"core 0.0.0",
]

Expand Down Expand Up @@ -2054,18 +2054,6 @@ dependencies = [
"winapi 0.3.6 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "rand"
version = "0.5.5"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
"cloudabi 0.0.3 (registry+https:/rust-lang/crates.io-index)",
"fuchsia-zircon 0.3.3 (registry+https:/rust-lang/crates.io-index)",
"libc 0.2.51 (registry+https:/rust-lang/crates.io-index)",
"rand_core 0.2.2 (registry+https:/rust-lang/crates.io-index)",
"winapi 0.3.6 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "rand"
version = "0.6.1"
Expand Down Expand Up @@ -2093,14 +2081,6 @@ dependencies = [
"rustc_version 0.2.3 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "rand_core"
version = "0.2.2"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
"rand_core 0.3.0 (registry+https:/rust-lang/crates.io-index)",
]

[[package]]
name = "rand_core"
version = "0.3.0"
Expand Down Expand Up @@ -2499,7 +2479,7 @@ name = "rustc-demangle"
version = "0.1.10"
source = "registry+https:/rust-lang/crates.io-index"
dependencies = [
"compiler_builtins 0.1.8 (registry+https:/rust-lang/crates.io-index)",
"compiler_builtins 0.1.9 (registry+https:/rust-lang/crates.io-index)",
"rustc-std-workspace-core 1.0.0",
]

Expand Down Expand Up @@ -2560,7 +2540,7 @@ version = "1.0.0"
dependencies = [
"byteorder 1.2.7 (registry+https:/rust-lang/crates.io-index)",
"parking_lot 0.7.1 (registry+https:/rust-lang/crates.io-index)",
"rand 0.5.5 (registry+https:/rust-lang/crates.io-index)",
"rand 0.6.1 (registry+https:/rust-lang/crates.io-index)",
"scopeguard 0.3.3 (registry+https:/rust-lang/crates.io-index)",
"serde 1.0.82 (registry+https:/rust-lang/crates.io-index)",
"serde_json 1.0.33 (registry+https:/rust-lang/crates.io-index)",
Expand Down Expand Up @@ -2599,7 +2579,7 @@ dependencies = [
"alloc 0.0.0",
"build_helper 0.1.0",
"cmake 0.1.33 (registry+https:/rust-lang/crates.io-index)",
"compiler_builtins 0.1.8 (registry+https:/rust-lang/crates.io-index)",
"compiler_builtins 0.1.9 (registry+https:/rust-lang/crates.io-index)",
"core 0.0.0",
]

Expand Down Expand Up @@ -2826,7 +2806,7 @@ dependencies = [
"alloc 0.0.0",
"build_helper 0.1.0",
"cmake 0.1.33 (registry+https:/rust-lang/crates.io-index)",
"compiler_builtins 0.1.8 (registry+https:/rust-lang/crates.io-index)",
"compiler_builtins 0.1.9 (registry+https:/rust-lang/crates.io-index)",
"core 0.0.0",
]

Expand Down Expand Up @@ -2888,7 +2868,7 @@ dependencies = [
"alloc 0.0.0",
"build_helper 0.1.0",
"cmake 0.1.33 (registry+https:/rust-lang/crates.io-index)",
"compiler_builtins 0.1.8 (registry+https:/rust-lang/crates.io-index)",
"compiler_builtins 0.1.9 (registry+https:/rust-lang/crates.io-index)",
"core 0.0.0",
]

Expand Down Expand Up @@ -3009,7 +2989,7 @@ dependencies = [
"alloc 0.0.0",
"build_helper 0.1.0",
"cmake 0.1.33 (registry+https:/rust-lang/crates.io-index)",
"compiler_builtins 0.1.8 (registry+https:/rust-lang/crates.io-index)",
"compiler_builtins 0.1.9 (registry+https:/rust-lang/crates.io-index)",
"core 0.0.0",
]

Expand Down Expand Up @@ -3276,7 +3256,7 @@ dependencies = [
"alloc 0.0.0",
"backtrace-sys 0.1.27 (registry+https:/rust-lang/crates.io-index)",
"cc 1.0.28 (registry+https:/rust-lang/crates.io-index)",
"compiler_builtins 0.1.8 (registry+https:/rust-lang/crates.io-index)",
"compiler_builtins 0.1.9 (registry+https:/rust-lang/crates.io-index)",
"core 0.0.0",
"dlmalloc 0.1.3 (registry+https:/rust-lang/crates.io-index)",
"fortanix-sgx-abi 0.3.2 (registry+https:/rust-lang/crates.io-index)",
Expand Down Expand Up @@ -3849,7 +3829,7 @@ dependencies = [
name = "unwind"
version = "0.0.0"
dependencies = [
"compiler_builtins 0.1.8 (registry+https:/rust-lang/crates.io-index)",
"compiler_builtins 0.1.9 (registry+https:/rust-lang/crates.io-index)",
"core 0.0.0",
"libc 0.2.51 (registry+https:/rust-lang/crates.io-index)",
]
Expand Down Expand Up @@ -4045,7 +4025,7 @@ source = "registry+https:/rust-lang/crates.io-index"
"checksum colored 1.6.0 (registry+https:/rust-lang/crates.io-index)" = "b0aa3473e85a3161b59845d6096b289bb577874cafeaf75ea1b1beaa6572c7fc"
"checksum commoncrypto 0.2.0 (registry+https:/rust-lang/crates.io-index)" = "d056a8586ba25a1e4d61cb090900e495952c7886786fc55f909ab2f819b69007"
"checksum commoncrypto-sys 0.2.0 (registry+https:/rust-lang/crates.io-index)" = "1fed34f46747aa73dfaa578069fd8279d2818ade2b55f38f22a9401c7f4083e2"
"checksum compiler_builtins 0.1.8 (registry+https:/rust-lang/crates.io-index)" = "a28c3898d0c57b26fa6f92de141ba665fa5ac5179f795db06db408be84302395"
"checksum compiler_builtins 0.1.9 (registry+https:/rust-lang/crates.io-index)" = "d7de11892d9f9f1bc76d43011c8233d27d58300d629dc9dfb51b6626ef7f6077"
"checksum compiletest_rs 0.3.19 (registry+https:/rust-lang/crates.io-index)" = "56c799b1f7142badf3b047b4c1f2074cc96b6b784fb2432f2ed9c87da0a03749"
"checksum constant_time_eq 0.1.3 (registry+https:/rust-lang/crates.io-index)" = "8ff012e225ce166d4422e0e78419d901719760f62ae2b7969ca6b564d1b54a9e"
"checksum core-foundation 0.6.3 (registry+https:/rust-lang/crates.io-index)" = "4e2640d6d0bf22e82bed1b73c6aef8d5dd31e5abe6666c57e6d45e2649f4f887"
Expand Down Expand Up @@ -4205,10 +4185,8 @@ source = "registry+https:/rust-lang/crates.io-index"
"checksum quote 0.6.10 (registry+https:/rust-lang/crates.io-index)" = "53fa22a1994bd0f9372d7a816207d8a2677ad0325b073f5c5332760f0fb62b5c"
"checksum racer 2.1.21 (registry+https:/rust-lang/crates.io-index)" = "37c88638777cc178684cf648ca0e1dad56646ce105b8593dfe665c436300adc3"
"checksum rand 0.4.3 (registry+https:/rust-lang/crates.io-index)" = "8356f47b32624fef5b3301c1be97e5944ecdd595409cc5da11d05f211db6cfbd"
"checksum rand 0.5.5 (registry+https:/rust-lang/crates.io-index)" = "e464cd887e869cddcae8792a4ee31d23c7edd516700695608f5b98c67ee0131c"
"checksum rand 0.6.1 (registry+https:/rust-lang/crates.io-index)" = "ae9d223d52ae411a33cf7e54ec6034ec165df296ccd23533d671a28252b6f66a"
"checksum rand_chacha 0.1.0 (registry+https:/rust-lang/crates.io-index)" = "771b009e3a508cb67e8823dda454aaa5368c7bc1c16829fb77d3e980440dd34a"
"checksum rand_core 0.2.2 (registry+https:/rust-lang/crates.io-index)" = "1961a422c4d189dfb50ffa9320bf1f2a9bd54ecb92792fb9477f99a1045f3372"
"checksum rand_core 0.3.0 (registry+https:/rust-lang/crates.io-index)" = "0905b6b7079ec73b314d4c748701f6931eb79fd97c668caa3f1899b22b32c6db"
"checksum rand_hc 0.1.0 (registry+https:/rust-lang/crates.io-index)" = "7b40677c7be09ae76218dc623efbf7b18e34bced3f38883af07bb75630a21bc4"
"checksum rand_isaac 0.1.1 (registry+https:/rust-lang/crates.io-index)" = "ded997c9d5f13925be2a6fd7e66bf1872597f759fd9dd93513dd7e92e5a5ee08"
Expand Down
2 changes: 1 addition & 1 deletion src/doc/man/rustc.1
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ full debug info with variable and type information.
.RE
.TP
\fBopt\-level\fR=\fIVAL\fR
Optimize with possible levels 0\[en]3
Optimize with possible levels 0\[en]3, s (optimize for size), or z (for minimal size)

.SH ENVIRONMENT

Expand Down
Loading