Alexander Ruliov

Results 17 comments of Alexander Ruliov

Also it's will be good to throw exception if circular dependency is detected.

2. There is [deserialize_ignored_any](https://docs.rs/serde/latest/serde/trait.Deserializer.html#tymethod.deserialize_ignored_any) It can be used to skip some data ( https://serde.rs/ignored-any.html ). And if want to be sure that there is no data left -- you can...

After taking a sleep got idea for my case. Since I parsing already not a string/bytes, but my `Deserializer` works already on my type `YamlNode`, I can just avoid of...

You can try to do it in two steps. If I understood the problem correctly, you can try to Implement `Deserialize` for `MyStructRepr`, which closely matches original data. Then implement...

I think this should not throw exceptions, because `5` can be added later. For such case there maybe should be field like `require: string | string[]`, which will throw exception...

I think that this is clearly bug, because if `obBecomeObserved` is not called -- change of value that used inside computed should do nothing (because it is not become observed)....

Got same error, after some debugging found that my employer's build system copying files of my package to other directory for isolated builds. And doesn't copies `.css` files, so this...