Initial commit

This commit is contained in:
Tristan B. Velloza Kildaire 2023-04-29 17:21:15 +02:00
commit 7d45ca806c
3 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/
/cryptstream
cryptstream.so
cryptstream.dylib
cryptstream.dll
cryptstream.a
cryptstream.lib
cryptstream-test-*
*.exe
*.pdb
*.o
*.obj
*.lst

12
dub.json Normal file
View File

@ -0,0 +1,12 @@
{
"authors": [
"Tristan B. Velloza Kildaire"
],
"copyright": "Copyright © 2023, Tristan B. Velloza Kildaire",
"dependencies": {
"river": "~>0.3.5"
},
"description": "A minimal D application.",
"license": "LGPL 2",
"name": "cryptstream"
}

6
source/app.d Normal file
View File

@ -0,0 +1,6 @@
import std.stdio;
void main()
{
writeln("Edit source/app.d to start your project.");
}