Initial commit

This commit is contained in:
Tristan B. Velloza Kildaire 2023-01-09 10:32:53 +02:00
commit 531b9ff365
5 changed files with 34 additions and 0 deletions

16
.gitignore vendored Normal file
View File

@ -0,0 +1,16 @@
.dub
docs.json
__dummy.html
docs/
/jstruct
jstruct.so
jstruct.dylib
jstruct.dll
jstruct.a
jstruct.lib
jstruct-test-*
*.exe
*.pdb
*.o
*.obj
*.lst

10
dub.json Normal file
View File

@ -0,0 +1,10 @@
{
"authors": [
"Tristan B. Velloza Kildaire"
],
"copyright": "Copyright © 2023, Tristan B. Velloza Kildaire",
"description": "Struct JSON serializer/deserializer",
"license": "LGPL v3.0",
"name": "jstruct",
"targetType": "library"
}

2
source/deserializer.d Normal file
View File

@ -0,0 +1,2 @@
module jstruct.deserializer;

4
source/package.d Normal file
View File

@ -0,0 +1,4 @@
module jstruct;
public import jstruct.serializer;
public import jstruct.deserializer;

2
source/serializer.d Normal file
View File

@ -0,0 +1,2 @@
module jstruct.serializer;