Initial commit

pull/3/head
commit 531b9ff365

16
.gitignore vendored

@ -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

@ -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"
}

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

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

@ -0,0 +1,2 @@
module jstruct.serializer;
Loading…
Cancel
Save