7a1e1ecce3
Creating a symlink in source to the dyaml directory does not actually result in a symlink when another package grabs d-yaml as a dependency via dub, and even if it did, it wouldn't work on Windows. So, this moves the source into source so that it'll actually work, and cdc.d has been adjusted accordingly so that building with it should still work.
19 lines
528 B
D
19 lines
528 B
D
|
|
// 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 yaml;
|
|
|
|
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;
|