Using the dyaml.all module instead of yaml (which will eventually be removed).
This commit is contained in:
parent
1c017c6492
commit
a341340d6c
13 changed files with 18 additions and 18 deletions
|
@ -1,7 +1,7 @@
|
|||
import std.ascii;
|
||||
import std.stdio;
|
||||
import std.string;
|
||||
import yaml;
|
||||
import dyaml.all;
|
||||
|
||||
struct Color
|
||||
{
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
import std.stdio;
|
||||
import yaml;
|
||||
import dyaml.all;
|
||||
|
||||
void main()
|
||||
{
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
import std.stdio;
|
||||
import yaml;
|
||||
import dyaml.all;
|
||||
|
||||
struct Color
|
||||
{
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
import std.ascii;
|
||||
import std.stdio;
|
||||
import std.string;
|
||||
import yaml;
|
||||
import dyaml.all;
|
||||
|
||||
struct Color
|
||||
{
|
||||
|
|
|
@ -5,7 +5,7 @@ import std.conv;
|
|||
import std.datetime;
|
||||
import std.stdio;
|
||||
import std.string;
|
||||
import yaml;
|
||||
import dyaml.all;
|
||||
|
||||
///Print help information.
|
||||
void help()
|
||||
|
|
|
@ -7,7 +7,7 @@ import std.math;
|
|||
import std.random;
|
||||
import std.stdio;
|
||||
import std.string;
|
||||
import yaml;
|
||||
import dyaml.all;
|
||||
|
||||
|
||||
immutable alphabet = " abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ-_";
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
import std.stdio;
|
||||
import std.string;
|
||||
import yaml;
|
||||
import dyaml.all;
|
||||
|
||||
|
||||
///Collects statistics about a YAML document and returns them as string.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue