Marco Conte
Marco Conte
In my application, I need to get the size of a directory, and in order to avoid having to re-invent the wheel I was planning to use the `dir::get_size` method...
- Make the `KnownLength` trait public as `legion::storage::KnownLength`. - Fix lints and use `Iterator::reduce` instead of the deprecated [`Itertools::fold1`](https://docs.rs/itertools/latest/itertools/trait.Itertools.html#method.fold1). ## Motivation and Context Closes issue https://github.com/amethyst/legion/issues/274 [CommandBuffer](https://docs.rs/legion/0.4.0/legion/systems/struct.CommandBuffer.html#method.push) allows to push...
I have a crate with the following `http` dependencies (from `cargo tree | grep http`), after the update from `http` `0.1` to` 0.2`: ``` ├── http v0.2.0 │ │ ├──...
I am unable to link any crate that uses `grpc-rs` as dependency, when using the target `x86_64-unknown-linux-musl`. The error that I get involves multiples `undefined references to __dso_handle`: ``` more...
Most of the features I originally had in mind for this library are close to be finalized. There are still some aspects of the library that could be improved implementation...
Hi, and thanks for your work! I'm in the process of upgrading this library as dependency from 0.2 to 0.3 and it would have been great to know what were...
Unless I missed it, this repository doesn't have a CHANGELOG. CHANGELOGs are essential to list the addition, changes and fixes between different versions. It would be great to add one...
`rusfmt` hangs when using [cfg-if](https://crates.io/crates/cfg-if) macro To reproduce run `rustftm main.rs`, where: ```rust // main.rs cfg_if::cfg_if! { if #[cfg(not(feature = "client"))] { if #[cfg(feature = "server")] { } } }...
### Related Problems? The trait API of `MeterProvider` ``` fn meter(&self, name: &'static str) -> Meter ``` requires to borrow name as `'static` ### Describe the solution you'd like: It...