Josh Triplett
Josh Triplett
# Summary In today's triage meeting we discussed the cargo-script syntax. There was some general willingness to add such a syntax, but some discussion on a few specific points of...
The mdbook build and deploy in GitHub Actions has been failing for a while, so the rendered lang team site doesn't have an updated version.
For some uses, it would make sense to statefully walk through the FST, stepping forward with input bytes, but also popping off the last input and returning to the previous...
fst has all the necessary infrastructure for `FromIterator` to work; please consider implementing it, so that `collect` works, and in particular to make it easy to collect into `Result` or...
For some uses of an FST, before applying a large number of queries to the fst, the caller may be able to prune out states and transitions from the FST...
libps1 currently [hardcodes the use of tico](https://github.com/JoshMcguigan/libps1/blob/dbe98d3f9ef2dddb2a875e9037637ce85240476d/src/lib.rs#L122) to shorten the working directory. Please consider providing an option for this (or perhaps a crate feature flag to avoid the dependency when...
The generated code produces warnings about the use of deprecated atomic initializers: ``` warning: use of deprecated item 'std::sync::atomic::ATOMIC_BOOL_INIT': the `new` function is now preferred --> D:\a\libz-sys\libz-sys\target\x86_64-pc-windows-gnu\debug\build\systest-47d2caa40185cb8b\out/all.rs:4:49 | 4 |...
In addition to the licenses of dependencies, please consider also including the licenses that apply to std, core, libc/libm, compiler_builtins, and similar. This would help people trying to provide documentation...
With `std::thread::available_parallelism` stabilized in 1.59, some projects may want to switch to it. Document the key difference (minimum Rust version support) to help projects make that decision more carefully.