We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
async-executor has a dependency on a really old version of slab.
slab = "0.4.4"
The problem is that this version no longer compiles with any remotely recent version of Rust:
error[E0015]: cannot call non-const fn `Slab::<Waker>::new` in constant functions --> /home/robin/.cargo/registry/src/index.crates.io-6f17d22bba15001f/async-executor-1.13.1/src/lib.rs:693:32 | 693 | active: Mutex::new(Slab::new()), | ^^^^^^^^^^^ | = note: calls in constant functions are limited to constant functions, tuple structs and tuple variants
This was fixed back in 2022 and shipped with slab 0.4.7.
The text was updated successfully, but these errors were encountered:
deps: Bump slab to v0.4.7
c91c7b9
Closes #131 Signed-off-by: John Nunley <[email protected]>
43d45de
cc smol-rs/async-executor#131 Signed-off-by: John Nunley <[email protected]>
Successfully merging a pull request may close this issue.
async-executor has a dependency on a really old version of slab.
slab = "0.4.4"
The problem is that this version no longer compiles with any remotely recent version of Rust:
This was fixed back in 2022 and shipped with slab 0.4.7.
The text was updated successfully, but these errors were encountered: