Noa
Noa
# Description of Changes Implements `__call_procedure__` in the TS bindings and host. # Expected complexity level and risk 2 # Testing - [ ] - [ ]
Resolves rust-lang/rust#117729. The tracking issue still needs an FCP, but I'm hoping that creating a stabilization PR will prompt one. r? libs-api
Now that `TypeId::of()` is const, we can move the typeid into `PyObjVTable` ## Summary by CodeRabbit * **Chores** * Updated minimum Rust toolchain requirement to version 1.91.0. Users compiling from...
Closes #195 With this change, this function in a downstream crate: ```rust pub fn foo(x: &[u8], y: u8) -> &[u8] { match memchr::memchr(y, x) { Some(i) => &x[i..], None =>...
Currently, indexing into the haystack with the index returned by memchr usually generates a bounds check, because the compiler doesn't know that it's valid. However, if an `assert_unchecked(i < haystack.len())`...
I wasn't sure if this behavior was to some degree intentional, but it's tripped me up a couple times. Now, when you run `paru -Sc` and then `^C`, it fully...
It's been out for quite a while, so this will dedupllicate the crate in a lot of dependency trees. Verified with cargo-semver-checks that this doesn't break public API besides the...