-
Notifications
You must be signed in to change notification settings - Fork 2
Description
Cool crate, exactly what I was looking for.
I'm building my application in an environment that doesn't allow using nightly/experimental features:
| error[E0658]: deriving Defaulton enums is experimental | --> /usr/src/debug//...//github.com-1ecc6299db9ec823/async-timers-0.1.4/src/lib.rs:110:10 | | | 110 | #[derive(Default, Debug)] | | ^^^^^^^ | | | = note: see issue #86985 <https://github.com/rust-lang/rust/issues/86985> for more information | = note: this error originates in the derive macroDefault(in Nightly builds, run with -Z macro-backtrace for more info)
And I do love the ergonomics of deriving Default like this, but looks like I can't use it in my app. Looks like it's just two enums. Would it be possible to remove these derives or put them behind a feature?