Initial commit

This commit is contained in:
Maxwell Ruben
2026-03-18 23:15:24 -05:00
parent 26a3593c64
commit 5230248fd4
7 changed files with 75 additions and 46 deletions

2
.gitignore vendored
View File

@ -24,3 +24,5 @@ docs/
# Code coverage # Code coverage
*.lst *.lst
# Program Database
*.pdb

3
dscanner.ini Normal file
View File

@ -0,0 +1,3 @@
[analysis.config.StaticAnalysisConfig]
number_style_check="disabled"
long_line_check="disabled"

6
dub.sdl Normal file
View File

@ -0,0 +1,6 @@
name "thirdworld-login"
description "Implementation of Two Worlds II login."
authors "Maxwell Ruben"
copyright "Copyright © 2026, Maxwell Ruben"
license "MIT"
dependency "thirdworld-common" repository="git+https://git.mxruben.com/thirdworld/thirdworld-common" version="7400f13c68befa4bfd2b78bcdc4ae67a417cafd7"

13
dub.selections.json Normal file
View File

@ -0,0 +1,13 @@
{
"fileVersion": 1,
"versions": {
"during": "0.3.0",
"eventcore": "0.9.39",
"silly": "1.1.1",
"stdx-allocator": "2.77.5",
"taggedalgebraic": "1.0.1",
"thirdworld-common": {"version":"7400f13c68befa4bfd2b78bcdc4ae67a417cafd7","repository":"git+https://git.mxruben.com/thirdworld/thirdworld-common"},
"vibe-container": "1.7.1",
"vibe-core": "2.14.0"
}
}

5
source/main.d Normal file
View File

@ -0,0 +1,5 @@
import thirdworld.common.log;
void main() {
logInfo("Test");
}