Daniel Faust
Daniel Faust
Fix clippy warning [unnecessary_lazy_evaluations](https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_lazy_evaluations) when using the `FromForm` derive macro. I only tested it on the `v0.5-rc` branch.
Add a new feature `chrono-tz` and impl `Dummy` for `chrono_tz::Tz`. A random timezone is selected from the list of all timezones provided by chrono_tz. I wasn't sure about the determinism...
Make sure these boxes are checked! 📦✅ - [x] You have the latest version of `rustfmt` installed ```bash $ rustup component add rustfmt ``` - [x] You ran `cargo fmt`...
- Raise MSRV to 1.72 - Remove internal use of crossbeam because `std::sync::mpsc::Sender` implements `Sync` since version 1.72, so there is no need for crossbeam anymore - Specify dependencies in...
Prevents ugly surprises when using notify-types in a wasm environment. I screwed up a bit and this PR is based on my previous on (#567).
This feature restores the serialization behavior of notify 6. CC: @passcod I screwed up a bit and this PR is based on my previous on (#567).
Move the DebouncedEvent from notify-debouncer-full to notify-types.
The change of the event serialization (#558) requires a release of a new major version. Are there other breaking changes that we should make before rolling a new release? My...
When serializing a struct containing an empty `Vec`, the `Vec` is completely dropped. But when de-serializing the struct, the `Vec` is required. This breaks the serialization round-trip. My expectation is...