diff --git a/dub.json b/dub.json index a7442d8..181caf6 100644 --- a/dub.json +++ b/dub.json @@ -6,6 +6,6 @@ "license": "BSL-1.0", "targetType" : "library", "dependencies": { - "pegged": "0.2.1" + "pegged": "0.3.2" } } diff --git a/source/toml/parser.d b/source/toml/parser.d index 7f6992b..3ffc259 100644 --- a/source/toml/parser.d +++ b/source/toml/parser.d @@ -3,6 +3,7 @@ module toml.parser; import toml.grammar; import pegged.grammar; import std.array: split; +import std.conv: to; import std.exception; import std.file : readText;