diff --git a/.gitignore b/.gitignore index d8b475f..981a70e 100644 --- a/.gitignore +++ b/.gitignore @@ -2,13 +2,13 @@ docs.json __dummy.html docs/ -/poodinis-config -poodinis-config.so -poodinis-config.dylib -poodinis-config.dll -poodinis-config.a -poodinis-config.lib -poodinis-config-test-* +/mirage-config +mirage-config.so +mirage-config.dylib +mirage-config.dll +mirage-config.a +mirage-config.lib +mirage-config-test-* *.exe *.o *.obj diff --git a/dub.json b/dub.json index c7bf949..a322081 100644 --- a/dub.json +++ b/dub.json @@ -1,9 +1,8 @@ { - "name": "poodinis-config", - "description": "Config loading and injection using Poodinis", + "name": "mirage-config", + "description": "Application Configuration Utilities", "copyright": "Copyright © 2022, Mike Bierlee", "authors": ["Mike Bierlee"], "license": "MIT", - "dependencies": { "poodinis": "~>8.1.2" }, "targetType": "library" } diff --git a/dub.selections.json b/dub.selections.json index 80248ac..755bcb2 100644 --- a/dub.selections.json +++ b/dub.selections.json @@ -1,6 +1,4 @@ { - "fileVersion": 1, - "versions": { - "poodinis": "8.1.2" - } + "fileVersion": 1, + "versions": {} } diff --git a/source/poodinis/config/dictionary.d b/source/mirage/config.d similarity index 99% rename from source/poodinis/config/dictionary.d rename to source/mirage/config.d index 6881edf..e379408 100644 --- a/source/poodinis/config/dictionary.d +++ b/source/mirage/config.d @@ -7,7 +7,7 @@ * The full terms of the license can be found in the LICENSE file. */ -module poodinis.config.dictionary; +module mirage.config; import std.exception : enforce; import std.string : split, startsWith, endsWith, join, lastIndexOf; diff --git a/source/poodinis/config/package.d b/source/mirage/package.d similarity index 78% rename from source/poodinis/config/package.d rename to source/mirage/package.d index 3a31494..7031966 100644 --- a/source/poodinis/config/package.d +++ b/source/mirage/package.d @@ -7,6 +7,6 @@ * The full terms of the license can be found in the LICENSE file. */ -module poodinis.config; +module mirage; -public import poodinis.config.dictionary; +public import mirage.config;