uctures from perl, JSON, YAML, or TOML data, from strings or files
=encoding UTF-8
=head1 NAME
Data::Structure::Deserialize::Auto - deserializes data structures from perl, JSON, YAML, or TOML dat
ze);
my $str = '{"db": {"host": "localhost"}}';
my $ds = deserialize($str); #autodetects JSON
say $ds->{db}->{host}; # localhost
# OR
$str = <<'END';
options:
autosav
cture::Deserialize::Auto> is a module for converting a string in an
arbitrary format (one of perl/JSON/YAML/TOML) into a perl data structure, without
needing to worry about what format it was in.
If