Marcel Märtens
Marcel Märtens
Hey, while installing the library in my project i got 2 compiler warnings due to my pedantic settings ("/W4" under Windows, "-Wall -Wextra -Werror -Wno-long-long -Wpedantic" under linux). It would...
allow consts like: `const ENTITY_MIDDLE_OFFSET: Vec3 = Vec3::new(0.0, 0.0, 0.9);`
currently you have to dereference it explicitly ```rust *x = *y + *z ``` new maybe: ```rust *x = y + z ```
e.g. by having a easy (or implicit) conversion from Vec3 to Vec3
for better performance without copying. Same use-case than #7
```rust if res.correction.x != 0.0 { entity.vel_mut().x = 0.0; } if res.correction.y != 0.0 { entity.vel_mut().y = 0.0; } if res.correction.z != 0.0 { entity.vel_mut().z = 0.0; } ``` ```rust...
Hi xd009642, Veloren stopped working with tarpaulin a few weeks ago. And i am investigating what caused this problem. I am currently debugging tarpaulin and wonder if i found a...
Hi, we use tarpaulin in our automated build pipeline to validate our code. But we can only run it with `cargo tarpaulin --exclude headless` because when we run it with...
Hey devs, We did some tests in our CI, where we are doing `cargo check, build, test, bench, doc, release builds, and tarpaulin. We stored their caches in different directories:...
**Is your feature request related to a problem? Please describe.** I'm always frustrated when someone on the discord has a problem and doesnt know how to create propper tracing. We...