⭐️NINIKA⭐️
⭐️NINIKA⭐️
Importing `gloo_timers` in firefox webextension's content script results in an error: `LinkError: import object field '__wbg_clearTimeout_65417660fe82f08d' is not a Function` It actually seems to be a firefox bug: https://bugzilla.mozilla.org/show_bug.cgi?id=1787770 This...
Closes #20 It works, but I am not yet happy about all the code. The error handling is kind of all over the place. Also, maybe it's worth making a...
Currently, some errors are handled as just `Result
Building in debug mode on arch linux produces an error: ``` error: could not find native static library `fmtd`, perhaps an -L flag is missing? ``` Looking at the code,...
### What feature would you like to see? I would like to be able to navigate from the highlighted pattern variable to the entry in pattern data table. ### How...
It's tricky (impossible?) to use `assert` attribute in `brw` key. For example this code: ``` #[derive(BinRead, BinWrite)] #[brw(assert(unused == 0u8))] struct Hello { unused: u8 } ``` Will give you...
I am writing a game engine that has to support some custom audio format that wouldn't make sense to include in the library, so I am trying to make my...
Currently, `Accumulator::handle` accepts a `darling::Result`. This doesn't play nice when using it with non-darling errors (for example, to handle `syn` error one has to write: ```rust let parsed = accumulator.handle(syn::parse2(tokens).map_err(Into::into));...
For interoperability reasons, it would be nice to be able to convert `TokenStream` (containing `compile_error!` invocations) into a darling error. This would be particularly useful to convert an error from...
When deriving, for example, `FromDeriveInput`, it might be useful to delegate parsing of some (or all) attributes to a field that implements `FromAttributes`. # Possible use-cases I see this feature...