diff --git a/dyaml/all.d b/dyaml/all.d new file mode 100644 index 0000000..734df5c --- /dev/null +++ b/dyaml/all.d @@ -0,0 +1,18 @@ + +// Copyright Ferdinand Majerech 2011. +// Distributed under the Boost Software License, Version 1.0. +// (See accompanying file LICENSE_1_0.txt or copy at +// http://www.boost.org/LICENSE_1_0.txt) + +module dyaml.all; + +public import dyaml.constructor; +public import dyaml.dumper; +public import dyaml.encoding; +public import dyaml.exception; +public import dyaml.linebreak; +public import dyaml.loader; +public import dyaml.representer; +public import dyaml.resolver; +public import dyaml.style; +public import dyaml.node; diff --git a/package.json b/package.json new file mode 100644 index 0000000..a56cfc1 --- /dev/null +++ b/package.json @@ -0,0 +1,9 @@ +{ + "name": "dyaml", + "description": "YAML parser and emitter", + "homepage": "http://dyaml.alwaysdata.net/", + "copyright": "Copyright © 2011, Ferdinand Majerech", + "authors": ["Ferdinand Majerech"], + "license": "Boost 1.0", + "dependencies": {} +} diff --git a/source/dyaml b/source/dyaml new file mode 120000 index 0000000..00c7277 --- /dev/null +++ b/source/dyaml @@ -0,0 +1 @@ +../dyaml/ \ No newline at end of file