-
Notifications
You must be signed in to change notification settings - Fork 12.9k
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
update few deps #99768
update few deps #99768
Conversation
(rust-highfive has picked a reviewer for you, use r? to override) |
@bors r+ |
📌 Commit 6c0d3c11a05d3235ced47d325c29cfb6be7620ee has been approved by It is now in the queue for this repository. |
@bors rollup=never |
⌛ Testing commit 6c0d3c11a05d3235ced47d325c29cfb6be7620ee with merge 198615c6cf45a2fd1abdf2e1c31c6c3da122f0d1... |
💔 Test failed - checks-actions |
This comment has been minimized.
This comment has been minimized.
openssl-src v111.18.0+1.1.1n -> v111.22.0+1.1.1q openssl-probe v0.1.2 -> v0.1.5 indoc v1.0.3 -> v1.0.6 bstr v0.2.13 -> v0.2.17 crc32fast v1.2.0 -> v1.3.2 diff v0.1.12 -> v0.1.13 ignore v0.4.17 -> v0.4.18 globset v0.4.5 -> v0.4.9 regex v1.5.5 -> v1.5.6
You'll probably need to adjust the src/tools/rustc-workspace-hack/Cargo.toml to enable that feature for memchr across our workspace. |
Looks like #99771 recently bumped memchr (BurntSushi/memchr@2.4.1...2.5.0) for stdlib too, so maybe that interfere with this PR crates' version/feature set. |
@rustbot ready Rebased and updated rustc-workspace-hack/Cargo.toml. |
@bors r+ |
|
||
# looks like the only user of deprecated `use_std` feature is `combine`, so this | ||
# can be removed if/when https://github.com/Marwes/combine/pull/348 be merged and released. | ||
memchr = { version = "2.5", features = ["std", "use_std"] } | ||
# same for regex |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nitpick: This comment is now left with an invalid reference! It previously referred to "the previous comment" which spoke about the default features of libz-sys, but you added a comment in between the two and now it looks like "same for regex" means "use_std is deprecated ..."
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks like it.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
So, could someone please file a follow-up PR to fix that comment?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sure. I assigned #100070 to you.
☀️ Test successful - checks-actions |
Finished benchmarking commit (760d8a2): comparison url. Instruction countThis benchmark run did not return any relevant results for this metric. Max RSS (memory usage)Results
CyclesResults
If you disagree with this performance assessment, please file an issue in rust-lang/rustc-perf. @rustbot label: -perf-regression Footnotes |
Existing comments were left in an incoherent state after rust-lang#99768.
Existing comments were left in an incoherent state after rust-lang#99768.
Clarify Cargo.toml comments Existing comments were left in an incoherent state after rust-lang#99768. r? `@RalfJung`
Updates few crates:
openssl-src v111.18.0+1.1.1n -> v111.22.0+1.1.1q: fixes few CVE's (https://www.openssl.org/news/vulnerabilities-1.1.1.html: https://cve.org/CVERecord?id=CVE-2022-1292 https://cve.org/CVERecord?id=CVE-2022-2068 https://cve.org/CVERecord?id=CVE-2022-2097)
openssl-probe v0.1.2 -> v0.1.5 updates ancient (2017) crate (alexcrichton/openssl-probe@0.1.2...0.1.5). Adds support to search cert for additional platforms.
indoc v1.0.3 -> v1.0.6 (dtolnay/indoc@1.0.3...1.0.6) Nothing special changed, removes unindent v0.1.7
bstr v0.2.13 -> v0.2.17 (BurntSushi/bstr@0.2.13...0.2.17) Few speedups (BurntSushi/bstr@8e65992, BurntSushi/bstr@5fcef91) and bugfix (BurntSushi/bstr@b2111b6)
crc32fast v1.2.0 -> v1.3.2 (srijs/rust-crc32fast@v1.2.0...v1.3.2) Speedup debug (srijs/rust-crc32fast@e61ce6a)
diff v0.1.12 -> v0.1.13 (utkarshkukreti/diff.rs@0.1.12...0.1.13) Few optimizations ([WIP] optimize utkarshkukreti/diff.rs#16, utkarshkukreti/diff.rs@0f0aa58)
ignore v0.4.17 -> v0.4.18 (it's hard to get usable diff, but most notable perf change is BurntSushi/ripgrep@a28e664)
globset v0.4.5 -> v0.4.9
regex v1.5.5 -> v1.5.6 few bugfixes (https://github.com/rust-lang/regex/blob/1.5.6/CHANGELOG.md#156-2022-05-20). There exist 1.6.0 version, but it's too fresh.