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 8 pull requests #83537

Closed
wants to merge 29 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
5e788f2
Add Linux-specific pidfd process extensions
Aaron1011 Sep 16, 2020
3426bf7
Typo fix
joshtriplett Oct 18, 2020
704d6c5
Add PidFd type and seal traits
voidc Feb 6, 2021
766cc25
Add tracking issue and link to man-page
voidc Mar 10, 2021
d850f6b
Update libc dependency to 0.2.89
voidc Mar 15, 2021
5ac8a31
Fix test header and imports
voidc Mar 16, 2021
a266bd8
Split do_fork into two
voidc Mar 16, 2021
cfb2d72
Make do_fork unsafe
voidc Mar 16, 2021
79348f4
`cargo update -p parking_lot -p parking_lot_core`
JohnTitor Mar 17, 2021
2b0e27e
`cargo update -p bytecount`
JohnTitor Mar 17, 2021
4238a8f
Add target attribute to create_pidfd field in Command
voidc Mar 19, 2021
58c1352
Add method to get create_pidfd value
voidc Mar 19, 2021
addf680
Use a single codegen unit to reduce non-determinism in srcloc.rs test
tmiasko Mar 20, 2021
3d64f8d
Join test thread to make assertion effective in sym.rs test case
tmiasko Mar 8, 2021
ae8ef70
Simplify and fix byte skipping in format! string parser
osa1 Mar 21, 2021
6c45ebe
format macro argument parsing fix
osa1 Mar 21, 2021
18748c9
Make # format easier to discover
alamb Mar 22, 2021
93737dc
Update library/alloc/src/fmt.rs
alamb Mar 22, 2021
b3ae90b
Tell GitHub to highlight `config.toml.example` as TOML
camelid Mar 24, 2021
3d8ce0a
rustdoc: Use diagnostics for error when including sources
camelid Mar 10, 2021
8bc4de7
Remove broken test
voidc Mar 25, 2021
42542cc
Rollup merge of #81825 - voidc:pidfd, r=joshtriplett
Dylan-DPC Mar 26, 2021
bfd56fa
Rollup merge of #82993 - camelid:source-use-diag, r=jyn514
Dylan-DPC Mar 26, 2021
91c019e
Rollup merge of #83239 - JohnTitor:reduce-deps, r=Mark-Simulacrum
Dylan-DPC Mar 26, 2021
65bda37
Rollup merge of #83328 - tmiasko:asm-test, r=joshtriplett
Dylan-DPC Mar 26, 2021
82fac65
Rollup merge of #83343 - osa1:issue83340, r=jackh726
Dylan-DPC Mar 26, 2021
e7e9dd6
Rollup merge of #83348 - osa1:issue83344, r=jackh726
Dylan-DPC Mar 26, 2021
1f1bfb9
Rollup merge of #83388 - alamb:alamb/fmt-dcs, r=Mark-Simulacrum
Dylan-DPC Mar 26, 2021
296f148
Rollup merge of #83431 - camelid:config-example-gitattributes, r=Mark…
Dylan-DPC Mar 26, 2021
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
Prev Previous commit
Next Next commit
cargo update -p parking_lot -p parking_lot_core
Changelog: https://github.com/Amanieu/parking_lot/blob/master/CHANGELOG.md#parking_lot_core-083-2021-02-12
The full log:
```
Removing cloudabi v0.1.0
Updating parking_lot v0.11.0 -> v0.11.1
Updating parking_lot_core v0.8.0 -> v0.8.3
```
JohnTitor committed Mar 17, 2021
commit 79348f49792cb4831a57ca817792ab72308d9325
22 changes: 6 additions & 16 deletions Cargo.lock
Original file line number Diff line number Diff line change
@@ -613,15 +613,6 @@ dependencies = [
"unicode-normalization",
]

[[package]]
name = "cloudabi"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4344512281c643ae7638bbabc3af17a11307803ec8f0fcad9fae512a8bf36467"
dependencies = [
"bitflags",
]

[[package]]
name = "cmake"
version = "0.1.44"
@@ -2492,9 +2483,9 @@ dependencies = [

[[package]]
name = "parking_lot"
version = "0.11.0"
version = "0.11.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a4893845fa2ca272e647da5d0e46660a314ead9c2fdd9a883aabc32e481a8733"
checksum = "6d7744ac029df22dca6284efe4e898991d28e3085c706c972bcd7da4a27a15eb"
dependencies = [
"instant",
"lock_api",
@@ -2503,15 +2494,14 @@ dependencies = [

[[package]]
name = "parking_lot_core"
version = "0.8.0"
version = "0.8.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c361aa727dd08437f2f1447be8b59a33b0edd15e0fcee698f935613d9efbca9b"
checksum = "fa7a782938e745763fe6907fc6ba86946d72f49fe7e21de074e08128a99fb018"
dependencies = [
"cfg-if 0.1.10",
"cloudabi",
"cfg-if 1.0.0",
"instant",
"libc",
"redox_syscall 0.1.57",
"redox_syscall 0.2.5",
"smallvec 1.6.1",
"winapi 0.3.9",
]
2 changes: 0 additions & 2 deletions src/tools/tidy/src/deps.rs
Original file line number Diff line number Diff line change
@@ -32,7 +32,6 @@ const EXCEPTIONS: &[(&str, &str)] = &[
("fuchsia-zircon", "BSD-3-Clause"), // rustdoc, rustc, cargo (jobserver & tempdir)
("colored", "MPL-2.0"), // rustfmt
("ordslice", "Apache-2.0"), // rls
("cloudabi", "BSD-2-Clause"), // (rls -> crossbeam-channel 0.2 -> rand 0.5)
("ryu", "Apache-2.0 OR BSL-1.0"), // rls/cargo/... (because of serde)
("bytesize", "Apache-2.0"), // cargo
("im-rc", "MPL-2.0+"), // cargo
@@ -76,7 +75,6 @@ const PERMITTED_DEPENDENCIES: &[&str] = &[
"cfg-if",
"chalk-derive",
"chalk-ir",
"cloudabi",
"cmake",
"compiler_builtins",
"cpuid-bool",