- Added dub package description

- Added `.gitignore`
This commit is contained in:
Tristan B. Velloza Kildaire 2023-03-25 17:06:39 +02:00
commit 44a2dcd083
2 changed files with 29 additions and 0 deletions

19
.gitignore vendored Normal file
View File

@ -0,0 +1,19 @@
.dub
docs.json
__dummy.html
docs/
/davinci
davinci.so
davinci.dylib
davinci.dll
davinci.a
davinci.lib
davinci-test-*
*.exe
*.pdb
*.o
*.obj
*.lst
dub.selections.json
source/davinci/app.d
libdavinci.a

10
dub.json Normal file
View File

@ -0,0 +1,10 @@
{
"authors": [
"Tristan B. V. Kildaire"
],
"copyright": "Copyright © 2023, Tristan B. V. Kildaire",
"description": "Server and client encoding and decoding for the renaissance protocol",
"license": "LGPL-3.0",
"name": "davinci",
"targetType": "library"
}