asdf icon indicating copy to clipboard operation
asdf copied to clipboard

JSON library

Results 5 asdf issues
Sort by recently updated
recently updated
newest added

In Rust the `serde` macro can rename all enum members, for example: ```rust #[serde(rename_all = "UPPERCASE")] pub enum LoginType { Web = 0, Mobile = 1, } ``` The D...

If I add asdf to the empty dub project and run 'dub build' - it builds fine. But when I use 'dub build --combined' it gives me errors: .dub/packages/mir-core-1.3.15/mir-core/source/mir/algebraic.d(1473,36): Error:...

I want to find the difference between two json files of unknown structure, showing which entries have been added, changed and removed. `asdf.transform.AsdfNode` has `added` and `removed` and that's part...

Hi, I think we need add this functionality to easily compare changed json files of different versions, or at least add the option to allow user sort the dict by...

Hi, asdf fails to serialize a struct with phobos Duration in it: ```d /+dub.sdl: dependency "asdf" version="~>0.5.7" +/ import std.stdio; import std.datetime; import asdf; void main() { A a; string...