ghosti3

Results 17 comments of ghosti3

@Narigo [crates.io](https://crates.io/crates/keepass-diff/versions) is now showing v1.2.0 so this issue is resolved.

Since that version is uploaded to `crates.io` the issue can be closed.

Huh, apparently `v1.1.4` is also missing from the git main branch. @Narigo could you add both `v1.2.0` and `v1.1.4` tags when you will be available?

I'd suggest scanning through the git history for changes in Cargo.toml. This may not give the exact commit when publish was done, but it will eliminate a lot of the...

> Hey, someone scanned all the repos and put it online: https://news.ycombinator.com/item?id=40698536 > > There is [email protected] in there as well: > > Does that mean I can safely tag...

Did some digging around and from what I see the issue appears right about [here](https://github.com/serde-rs/serde/blob/d5bc546ca53be0b31984a06a8ad587cbea4ca5ce/serde/src/de/mod.rs#L794). The code linked eventually calls `InnerDecoder::deserialize_any` which then executes this line: https://github.com/PistonDevelopers/hematite_nbt/blob/ce60b817f31b20125644c12fbf13f981809d5324/src/de.rs#L290 And while the...

Also might add the output of derive macros (done with `cargo-expand`): ```rust mod value { use crate::Map; use std::fmt; use std::io; use byteorder::{BigEndian, ReadBytesExt, WriteBytesExt}; use error::{Error, Result}; use raw;...