-
Notifications
You must be signed in to change notification settings - Fork 478
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
v0.8: Prepare for the next release #1160
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
``` error: lint group `rust_2018_idioms` has the same priority (0) as a lint --> Cargo.toml:64:1 | 64 | rust_2018_idioms = "warn" | ^^^^^^^^^^^^^^^^ ------ has an implicit priority of 0 65 | single_use_lifetimes = "warn" | -------------------- has the same priority as this lint | = note: the order of the lints in the table is ignored by Cargo = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#lint_groups_priority = note: `#[deny(clippy::lint_groups_priority)]` on by default help: to have lints override the group set `rust_2018_idioms` to a lower priority | 64 | rust_2018_idioms = { level = "warn", priority = -1 } | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ```
The list channel's `Block::new` was causing a stack overflow because it held 32 item slots, instantiated on the stack before moving to `Box::new`. The 32x multiplier made modestly-large item sizes untenable. That block is now initialized directly on the heap. References from the `std` channel implementation: * rust-lang/rust#102246 * rust-lang/rust#132738
Signed-off-by: tison <wander4096@gmail.com>
``` error: package `libc v0.2.167` cannot be built because it requires rustc 1.63 or newer, while the currently active rustc version is 1.61.0 ```
Same as aarch64.
Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Ibraheem Ahmed <ibraheem@ibraheem.ca>
- crossbeam-utils 0.8.20 -> 0.8.21 - crossbeam-channel 0.5.13 -> 0.5.14 - crossbeam-deque 0.8.5 -> 0.8.6 - crossbeam-queue 0.3.11 -> 0.3.12
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
CachePadded
. (Fix CI failure & update CI config & some cleanups #1152)list::Block
directly on the heap #1146, channel: Handle possible allocation failure inlist::Block::new
. #1147)Select::new_biased
function. (feat: add new_biased constructor for biased channel selection #1150)clippy::zero_repeat_side_effects
lint in macro generated code. (Fix all warnings from the latest Clippy #1123)Injector
. (channel: Createlist::Block
directly on the heap #1146, channel: Handle possible allocation failure inlist::Block::new
. #1147, Port #1146 & #1147 to deque::Injector and queue::SegQueue #1159)SegQueue
. (channel: Createlist::Block
directly on the heap #1146, channel: Handle possible allocation failure inlist::Block::new
. #1147, Port #1146 & #1147 to deque::Injector and queue::SegQueue #1159)(skiplist is in the master branch, so I'll release it in another PR.)
Backports:
list::Block
directly on the heap #1146list::Block::new
. #1147