ASDF.jl
ASDF.jl copied to clipboard
A Julia implementation of the Advanced Scientific Data Format (ASDF)
Hi Team, Wondering if this is still being maintained/would there be any effort to update this to run on current versions of Julia? Just downloaded this and getting fails on...
I checked [BioJulia/YAML.jl](https://github.com/BioJulia/YAML.jl), and it seems feasible to use it to parse YAML files. One needs to extend its constructor table `default_yaml_constructors` to know about ASDF tags, and then ASDF...
Aren't * https://github.com/eschnett/ASDF.jl/blob/b6a05c2710d84e4704c153456ebd7570f60510b1/src/ASDF.jl#L80 * https://github.com/eschnett/ASDF.jl/blob/b6a05c2710d84e4704c153456ebd7570f60510b1/src/ASDF.jl#L84 all acts of [type piracy](https://docs.julialang.org/en/v1/manual/style-guide/index.html#Avoid-type-piracy-1)? E.g. ```julia julia> VersionNumber(Dict("major" => 1, "minor" => 2, "patch" => 3, "prerelease" => nothing, "build" => nothing)) ERROR: MethodError:...