Zeke Fast
Zeke Fast
I would like to do some numbers comparison, specifically comparing numbers of cpus returned by `num_cpus()` function, but really have troubles with that. Here is an example of `justfile`: ```justfile...
I have found no answer to the question in title in documentation nor GitHub issues nor PRs. Is it possible to do something like that at all and if yes,...
Example from documentation `((A, B), C) -> (A, B, C)` [works pretty well](https://play.rust-lang.org/?version=stable&mode=debug&edition=2021&gist=c5c5186980e0d98a6d1046e75612b6cc)! ```rust use itertools::*; fn main() { let one_two = std::iter::once((1, 2)); let three = std::iter::once(3); dbg!(cons_tuples(izip!(one_two, three)).collect::());...
Would it be possible to implement `MultiUnzip` on `Option` to make something like that possible to implement? ```rust struct A { a: u32, b: u32, c: u32, } let opt...
# Problem I support fairly large `just` code base as for build script and eagerly looking into `CHANGELOG.md` with each release for new features, attributes, functions, etc. with each new...
# Summary Migrate from [`once_cell`](https://crates.io/crates/once_cell) types to those provided by `std`. Remove [`once_cell`](https://crates.io/crates/once_cell) dependency. *__NOTE:__ This PR is blocked by stabilization of [`lazy_get` feature](https://github.com/rust-lang/rust/issues/129333) which probably has to be stabilized...
# Summary Add `gnome_49` feature flag. Update dependencies. # Changes - Bump dependencies requirements in `Cargo.toml`: - `gtk4`: `0.10` -> `0.10.3` ([`gnome_49` feature was introduced in `0.10.2`](https://github.com/gtk-rs/gtk4-rs/releases/tag/0.10.2), but latest ATM...