ctucx.git: nimexif

nim-wrapper for libexif

commit 111744c3359d60d730efd3de7b947605ee43bc0a
parent 5e4a566d2c481b7fe003a4782372e860a113ae10
Author: Leah (ctucx) <leah@ctu.cx>
Date: Sat, 13 Mar 2021 15:54:19 +0100

rename to nimexif
5 files changed, 6 insertions(+), 5 deletions(-)
diff --git a/.gitignore b/.gitignore
@@ -4,4 +4,5 @@ test_c.o
 test_c
 get_metadata.o
 get_metadata
-exif.o-
\ No newline at end of file
+exif.o
+example+
\ No newline at end of file
diff --git a/example.nim b/example.nim
@@ -1,6 +1,6 @@
 import os
-import exifnim/libexif
-import exifnim/helpers
+import nimexif/libexif
+import nimexif/helpers
 import json
 
 var result: cint
diff --git a/exifnim.nimble b/exifnim.nimble
@@ -6,7 +6,7 @@ description   = "Read exif data using libexif"
 license       = "GPL-3.0"
 srcDir        = "./"
 bin           = @["example"]
-installDirs   = @["exifnim"]
+installDirs   = @["nimexif"]
 
 # Dependencies
 requires "nim >= 1.4"
diff --git a/exifnim/helpers.nim b/nimexif/helpers.nim
diff --git a/exifnim/libexif.nim b/nimexif/libexif.nim