Samuel Hurel

Results 22 comments of Samuel Hurel

I license past and future contributions under the triple MIT OR Apache-2.0 OR Zlib license, allowing licensees to choose any one at their option.

@lolo32 no it can't RUST_LOG is used by the env_logger crate, not the log crate so it have no effect

Almost the same problem with jspm: `package.json` is assumed to be at the location `../..` from this module. I guess it could be possible to pass an option to the...

You can target wasm by disabling default features: ``` [dependencies] legion = { version = "0.2.1", default-features = false } ``` You won’t be able to use any parallel function...

It can't hurt to add this info to the readme, but I'm not maintainer of this project, so i can't tell if such a PR would be accepted. I think...

Hello there, This is exactly what i'm trying to achieve with the [rstar](https://crates.io/crates/rstar) crate. I have all the tree setup being done already and the ability to get an iterator...

Hello, thanks! It feels a bit weird to have a random zero in the middle of an example. IMO we should either add a comment to explain that length is...

Hello, i think you can achieve this by using the [`by_ref`](https://doc.rust-lang.org/std/iter/trait.Iterator.html#method.by_ref) Iterator method?

Hello, Since I'm interested in developing some enveloppe types, I'm jumping in! I have 2 different use cases, both are related to 3D graphics, so I'm gonna assume : *...