diff options
| -rw-r--r-- | dub.sdl | 4 | ||||
| -rw-r--r-- | dub.selections.json | 2 | ||||
| -rw-r--r-- | maker.org | 41 | 
3 files changed, 41 insertions, 6 deletions
| @@ -8,8 +8,8 @@ targetPath          "./bin"  #sourcePath          "./src/sdp"  stringImportPaths   "./views"  buildRequirements   "allowWarnings" -dependency          "toml"         version="~>1.0.0-rc.2" # https://code.dlang.org/packages/toml          https://github.com/toml-lang/toml/wiki -dependency          "toml:json"    version="~>1.0.0-rc.2" +dependency          "toml"         version="~>1.0.0-rc.3" # https://code.dlang.org/packages/toml          https://github.com/toml-lang/toml/wiki +dependency          "toml:json"    version="~>1.0.0-rc.3"  dependency          "d2sqlite3"    version="~>0.16.2"     # https://code.dlang.org/packages/d2sqlite3     http://biozic.github.io/d2sqlite3/d2sqlite3.html    subconfiguration  "d2sqlite3"   "all-included"  dependency          "archive"      version="~>0.6.0"      # http://code.dlang.org/packages/archive        https://github.com/rcythr/archive diff --git a/dub.selections.json b/dub.selections.json index ccb943a..58bf72a 100644 --- a/dub.selections.json +++ b/dub.selections.json @@ -7,7 +7,7 @@  		"libinputvisitor": "1.2.2",  		"sdlang-d": "0.10.2",  		"taggedalgebraic": "0.10.9", -		"toml": "1.0.0-rc.2", +		"toml": "1.0.0-rc.3",  		"unit-threaded": "0.6.36"  	}  } @@ -818,8 +818,8 @@ targetPath          "./bin"  #sourcePath          "./src/sdp"  stringImportPaths   "./views"  buildRequirements   "allowWarnings" -dependency          "toml"         version="~>1.0.0-rc.2" # https://code.dlang.org/packages/toml          https://github.com/toml-lang/toml/wiki -dependency          "toml:json"    version="~>1.0.0-rc.2" +dependency          "toml"         version="~>1.0.0-rc.3" # https://code.dlang.org/packages/toml          https://github.com/toml-lang/toml/wiki +dependency          "toml:json"    version="~>1.0.0-rc.3"  dependency          "d2sqlite3"    version="~>0.16.2"     # https://code.dlang.org/packages/d2sqlite3     http://biozic.github.io/d2sqlite3/d2sqlite3.html    subconfiguration  "d2sqlite3"   "all-included"  dependency          "archive"      version="~>0.6.0"      # http://code.dlang.org/packages/archive        https://github.com/rcythr/archive @@ -1127,7 +1127,42 @@ sdp_exe = executable('sdp',  )  #+END_SRC -** * subprojects +** subprojects + +#+BEGIN_SRC sh :tangle subprojects/README +archive +- dub +  - https://code.dlang.org/packages/archive +- upstream +  - https://github.com/rcythr/archive +- mathias +  - https://github.com/ximion/archive.git + +d2sqlite3 +- dub +  - https://code.dlang.org/packages/d2sqlite3 +- upstream +  - https://github.com/biozic/d2sqlite3 +- mathias +  - https://github.com/ximion/d2sqlite3.git + +imageformats +- dub +  - https://code.dlang.org/packages/imageformats +- upstream +  - https://github.com/lgvz/imageformats +- mathias +  - https://github.com/ximion/imageformats.git + +toml +- dub +  - https://code.dlang.org/packages/toml +- upstream +  - https://github.com/Kripth/toml +- mathias +  - https://github.com/ximion/toml.git +#+END_SRC +  *** toml-d  #+BEGIN_SRC sh :tangle subprojects/toml-d.wrap | 
