README

TOML

A TOML 1.0.0 compliant serializer/deserializer.

Usage

Parsing TOML

use TOML;

my $config = from-toml("config.toml".IO.slurp);
# use $config like any ol' hash

Generating TOML

use TOML;

my $config = {
  bands => ['green day',
            'motorhead',
            't swift',],
  favorite => 'little big',
};

my $toml-config = to-toml($config);
#favorite = "little big"
#bands = ["green day",
#         "motorhead",
#         "t swift"]

License

Authors

@tony-o

Credits

The tests here use @BurntSushi's toml-tests.

TOML v0

TOML 1.0.0 compliant Encoding/Decoding

Authors

    License

    Artistic-2.0

    Dependencies

    Test Dependencies

    Provides

    • TOML
    • TOML::Actions
    • TOML::Grammar
    • TOML::Time

    The Camelia image is copyright 2009 by Larry Wall. "Raku" is trademark of the Yet Another Society. All rights reserved.