François Mockers

Results 305 comments of François Mockers

is this still relevant now that we have sub apps with their own world?

> How do you imagine CI/CD working with unstable features on the main bevy? With only GitHub runners, no CI/CD for unstable features. This is actually already an issue in...

Instead of having different `PluginGroups`, I think this would be better suited for compilation features: - they reduce compile time - they guarantee that the code won't be present -...

with the 1.0.14, links to anchors in a markdown files are failing the check

I re-added (and fixed) the gentest script in #145. I believe it can't be replaced by fuzzing or prop testing, as both those techniques would need a third party flexbox...

great! thank you for digging into this! doing easing on something that is behind a `Handle` is not something simple, it depends on which part you want to change... your...

thank you for reporting this. it should be fixed now, but master tracks bevy master so I'll probably wait for a bevy release to push a new version...

Based on https://github.com/serde-rs/serde/issues/1098#issuecomment-346706565, you can do [this](https://play.rust-lang.org/?gist=fb47ee354beb2f98ed95a2cba6100a6e&version=stable&mode=debug): ```rust #[derive(Deserialize)] struct Test { #[serde(default, deserialize_with = "nullable_default")] default_field: DefaultField, } #[derive(Deserialize, Default)] struct DefaultField { u8: u8, } fn nullable_default, T:...

Thanks you for reporting this! Duration formats were supported in Hocon formats, but not all the way through deserialization... They now are (in 0.5.1), with an api inspired by [`humantime-serde`](https://crates.io/crates/humantime-serde)...

it should be possible with nom, but I'm using an old version (4.2) when current (6.1) changed a lot and is nicer to use when trying to update, I encountered...