Merge pull request #197 from andre2007/master

Dub.json update for terminal, cgi, http2
This commit is contained in:
Adam D. Ruppe 2019-06-14 10:07:12 -04:00 committed by GitHub
commit 2fb6f806be
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 21 additions and 8 deletions

View File

@ -1,9 +1,15 @@
{
"name": "arsd-official",
"targetType": "none",
"sourcePaths": ["."],
"targetType": "library",
"importPaths": ["."],
"sourceFiles": ["package.d"],
"description": "A container of various subpackages that do lots of different things. You should use one of the subpackages instead of the main package in most cases, but you can try the complete package if you get duplicated dependency issues.",
"license":"BSL-1.0",
"dependencies": {
":cgi": "*",
":http": "*",
":terminal": "*"
},
"subPackages": [
{
"name": "simpledisplay",
@ -87,8 +93,10 @@
{
"name": "cgi",
"description": "web server library with cgi, fastcgi, scgi, and embedded http server support",
"targetType": "sourceLibrary",
"sourceFiles": ["cgi.d"]
"targetType": "library",
"sourceFiles": ["cgi.d"],
"importPaths": ["."],
"dflags": ["-mv=arsd.cgi=cgi.d"]
},
{
"name": "mysql",
@ -132,8 +140,10 @@
"description": "HTTP client library. Depends on OpenSSL right now on all platforms. On 32 bit Windows, you may need to get OMF openssl lib and dlls (ask me if you can't find it)",
"libs": ["crypto", "ssl"],
"versions": ["with_openssl"],
"targetType": "sourceLibrary",
"sourceFiles": ["http2.d"]
"targetType": "library",
"sourceFiles": ["http2.d"],
"importPaths": ["."],
"dflags": ["-mv=arsd.http2=http2.d"]
},
{
"name": "jsvar",
@ -151,8 +161,10 @@
{
"name": "terminal",
"description": "Cross-platform Terminal I/O with color, mouse support, real time input, etc.",
"targetType": "sourceLibrary",
"sourceFiles": ["terminal.d"]
"targetType": "library",
"sourceFiles": ["terminal.d"],
"importPaths": ["."],
"dflags": ["-mv=arsd.terminal=terminal.d"]
},
{
"name": "ttf",

1
package.d Normal file
View File

@ -0,0 +1 @@
module arsd;