Матвей Т

Results 4 issues of Матвей Т

Could you please add events. You have said they are there in `README.md`: ```dart rpc.events.listen((event) { if (event is DiscordReady) { event.user; } if (event is DiscordErrored) { event.errorCode; event.message;...

Latest version fails to compile: ``` error[E0615]: attempted to take value of method `line` on type `proc_macro::Span` --> C:\Users\drunk\.cargo\registry\src\index.crates.io-6f17d22bba15001f\axohtml-macros-0.5.0\src\html.rs:203:53 | 203 | ... span.unstable().start().line, | ^^^^ method, not a field...

I took inspiration from RustCrypto, how they this centric `Digest` trait. And I liked it, so I am starting to re-implement all the barcodes using it. I called it `Barcode`.

It appears that in Code93 you aren't able to encode the `]`, although the spec says you can. I found the issue: https://github.com/buntine/barcoders/blob/eb7ce1d59eeecf242b5437f577b7edba763c812d/src/sym/code93.rs#L64-L65 I will be fixing it in https://github.com/buntine/barcoders/pull/36