diff --git a/uuids.nim b/src/uuids.nim similarity index 99% rename from uuids.nim rename to src/uuids.nim index b44ede2..3f6ab38 100644 --- a/uuids.nim +++ b/src/uuids.nim @@ -1,6 +1,6 @@ import strutils, hashes import isaac -import uuids/urandom +import uuidspkg/urandom type UUID* = object diff --git a/uuids/urandom.nim b/src/uuidspkg/urandom.nim similarity index 100% rename from uuids/urandom.nim rename to src/uuidspkg/urandom.nim diff --git a/uuids.nimble b/uuids.nimble index 98eaf59..de18883 100644 --- a/uuids.nimble +++ b/uuids.nimble @@ -1,9 +1,12 @@ -[Package] -name: "uuids" -version: "0.1.10" -author: "Xored Software, Inc." -description: "UUID library" -license: "MIT" +# Package + +version = "0.1.10" +author = "Xored Software, Inc." +description = "UUID library" +license = "MIT" +bin = @["uuids"] +srcDir = "src" + +# Dependencies -[Deps] requires: "isaac >= 0.1.3"