arsd/dub.json

409 lines
11 KiB
JSON

{
"name": "arsd-official",
"targetType": "library",
"importPaths": ["."],
"sourceFiles": ["package.d"],
"description": "Subpackage collection for web, database, terminal ui, gui, scripting, and more with a commitment to long-term compatibility and stability. Use individual subpackages instead of the overall package to avoid bringing in things you don't need/want!",
"authors": ["Adam D. Ruppe"],
"license":"BSL-1.0",
"dependencies": {
":simpledisplay": "*",
":minigui": "*",
":nanovega": "*",
":email": "*",
":image_files": "*",
":png": "*",
":htmltotext": "*",
":dom": "*",
":characterencodings": "*",
":cgi": "*",
":mysql": "*",
":postgres": "*",
":sqlite": "*",
":mssql": "*",
":http": "*",
":jsvar": "*",
":script": "*",
":terminal": "*",
":ttf": "*",
":color_base": "*",
":svg":"*",
":database_base": "*"
},
"subPackages": [
{
"name": "simpledisplay",
"description": "Window creation and basic drawing",
"targetType": "library",
"importPaths": ["."],
"dflags": ["-mv=arsd.simpledisplay=simpledisplay.d"],
"lflags-osx": ["-L/usr/X11/lib"],
"dependencies": {"arsd-official:color_base":"*"},
"configurations": [
{
"name": "normal",
"libs-windows": ["gdi32"]
},
{
"name": "without-opengl",
"versions": ["without_opengl"],
"libs-windows": ["gdi32"]
},
{
"name": "cocoa",
"versions-osx": [ "OSXCocoa", "allow_unimplemented_features", "without_opengl" ],
"lflags-osx": ["-framework", "Cocoa"],
}
],
"sourceFiles": ["simpledisplay.d"]
},
{
"name": "minigui",
"description": "Small GUI widget library for Windows and Linux",
"targetType": "library",
"importPaths": ["."],
"dflags": ["-mv=arsd.minigui=minigui.d"],
"dependencies": {"arsd-official:simpledisplay":"*"},
"sourceFiles": ["minigui.d"]
},
{
"name": "nanovega",
"description": "Vector graphics library",
"targetType": "library",
"dflags": ["-mv=arsd.nanovega=nanovega.d"],
"dependencies": {
"arsd-official:simpledisplay":"*",
"arsd-official:image_files":"*",
"arsd-official:svg":"*",
"arsd-official:ttf":"*"
},
"importPaths": ["."],
"libs-posix": ["freetype", "fontconfig"],
"sourceFiles": ["nanovega.d", "blendish.d"]
},
{
"name": "email",
"description": "Email helper library, both sending MIME messages and parsing incoming mbox/maildir messages",
"targetType": "library",
"importPaths": ["."],
"dependencies": {"arsd-official:htmltotext":"*"},
"dflags": ["-mv=arsd.email=email.d"],
"sourceFiles": ["email.d"]
},
{
"name": "image_files",
"description": "Various image file format support - PNG read/write, JPEG, TGA, BMP, PCX, TGA, DDS read.",
"importPaths": ["."],
"targetType": "library",
"dependencies": {
"arsd-official:color_base":"*",
"arsd-official:png":"*",
"arsd-official:bmp":"*",
"arsd-official:svg":"*",
"arsd-official:jpeg":"*"
},
"dflags": [
"-mv=arsd.image=image.d",
"-mv=arsd.targa=targa.d",
"-mv=arsd.pcx=pcx.d",
"-mv=arsd.dds=dds.d"
],
"sourceFiles": ["image.d", "targa.d", "pcx.d", "dds.d"]
},
{
"name": "svg",
"description": "Dependency-free partial SVG file format read support",
"importPaths": ["."],
"targetType": "library",
"dflags": ["-mv=arsd.svg=svg.d"],
"sourceFiles": ["svg.d"]
},
{
"name": "jpeg",
"description": "Dependency-free partial JPEG file format read support",
"importPaths": ["."],
"targetType": "library",
"dflags": ["-mv=arsd.jpeg=jpeg.d"],
"dependencies": {
"arsd-official:color_base":"*"
},
"sourceFiles": ["jpeg.d"]
},
{
"name": "png",
"description": "PNG file format support",
"importPaths": ["."],
"targetType": "library",
"dflags": ["-mv=arsd.png=png.d"],
"dependencies": {
"arsd-official:color_base":"*"
},
"sourceFiles": ["png.d"]
},
{
"name": "bmp",
"description": "BMP file format support",
"importPaths": ["."],
"targetType": "library",
"dflags": ["-mv=arsd.bmp=bmp.d"],
"dependencies": {
"arsd-official:color_base":"*"
},
"sourceFiles": ["bmp.d"]
},
{
"name": "htmltotext",
"description": "HTML to plain text conversion",
"importPaths": ["."],
"targetType": "library",
"dependencies": {"arsd-official:dom":"*", "arsd-official:color_base":"*"},
"dflags": ["-mv=arsd.htmltotext=htmltotext.d"],
"sourceFiles": ["htmltotext.d"]
},
{
"name": "dom",
"description": "HTML tag soup DOM library",
"targetType": "library",
"dependencies": {"arsd-official:characterencodings":"*"},
"importPaths": ["."],
"dflags": ["-mv=arsd.dom=dom.d"],
"sourceFiles": ["dom.d"]
},
{
"name": "rss",
"description": "RSS/Atom parsing",
"targetType": "library",
"dependencies": {"arsd-official:dom":"*"},
"importPaths": ["."],
"dflags": ["-mv=arsd.rss=rss.d"],
"sourceFiles": ["rss.d"]
},
{
"name": "characterencodings",
"description": "Character encodings to UTF-8",
"targetType": "library",
"importPaths": ["."],
"dflags": ["-mv=arsd.characterencodings=characterencodings.d"],
"sourceFiles": ["characterencodings.d"]
},
{
"name": "cgi",
"description": "web server library with cgi, fastcgi, scgi, and embedded http server support",
"targetType": "library",
"sourceFiles": ["cgi.d"],
"importPaths": ["."],
"dflags": ["-mv=arsd.cgi=cgi.d"],
"configurations": [
{
"name": "embedded_httpd",
"versions": ["embedded_httpd"]
},
{
"name": "embedded_httpd_threads",
"versions": ["embedded_httpd_threads"]
},
{
"name": "embedded_httpd_processes",
"versions": ["embedded_httpd_processes"]
},
{
"name": "embedded_httpd_hybrid",
"versions": ["embedded_httpd_hybrid"]
},
{
"name": "cgi",
"versions": ["traditional_cgi"]
},
{
"name": "fastcgi",
"versions": ["fastcgi"],
"libs": ["fcgi"]
},
{
"name": "scgi",
"versions": ["scgi"]
}
]
},
{
"name": "mysql",
"description": "MySQL client library. Wraps the official C library with my database.d interface.",
"targetType": "library",
"dependencies": {"arsd-official:database_base":"*"},
"libs-posix": ["mysqlclient"],
"libs-windows": ["libmysql"],
"sourceFiles": ["mysql.d"],
"importPaths": ["."],
"dflags": ["-mv=arsd.mysql=mysql.d"]
},
{
"name": "postgres",
"description": "Postgresql client library. Wraps the libpq C library with my database.d interface.",
"targetType": "library",
"dependencies": {"arsd-official:database_base":"*"},
"libs": ["pq"],
"sourceFiles": ["postgres.d"],
"importPaths": ["."],
"dflags": ["-mv=arsd.postgres=postgres.d"]
},
{
"name": "sqlite",
"description": "sqlite wrapper. Wraps the official C library with my database.d interface.",
"targetType": "library",
"dependencies": {"arsd-official:database_base":"*"},
"libs": ["sqlite3"],
"libs-posix": ["dl"],
"sourceFiles": ["sqlite.d"],
"importPaths": ["."],
"dflags": ["-mv=arsd.sqlite=sqlite.d"]
},
{
"name": "mssql",
"description": "Microsoft SQL Server client library. Wraps the official ODBC library with my database.d interface.",
"targetType": "library",
"dependencies": {"arsd-official:database_base":"*"},
"libs-windows": ["odbc32"],
"sourceFiles": ["mssql.d"],
"importPaths": ["."],
"dflags": ["-mv=arsd.mssql=mssql.d"]
},
{
"name": "http",
"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)",
"targetType": "library",
"sourceFiles": ["http2.d"],
"importPaths": ["."],
"dflags": ["-mv=arsd.http2=http2.d"],
"configurations": [
{
"name": "with_openssl",
"versions": ["with_openssl"]
},
{
"name": "without_openssl",
"versions": ["without_openssl"]
}
]
},
{
"name": "jsvar",
"description": "Javascript-like object in D, capable of json read/write/manipulation.",
"targetType": "library",
"importPaths": ["."],
"dflags": ["-mv=arsd.jsvar=jsvar.d"],
"sourceFiles": ["jsvar.d"]
},
{
"name": "jni",
"description": "Provides easy interop with Java via JNI.",
"targetType": "library",
"importPaths": ["."],
"dflags": ["-mv=arsd.jni=jni.d"],
"sourceFiles": ["jni.d"]
},
{
"name": "script",
"description": "Small Javascript-like script interpreter with easy D API",
"targetType": "library",
"dependencies": {"arsd-official:jsvar":"*"},
"importPaths": ["."],
"dflags": ["-mv=arsd.script=script.d"],
"sourceFiles": ["script.d"]
},
{
"name": "terminal",
"description": "Cross-platform Terminal I/O with color, mouse support, real time input, etc.",
"targetType": "library",
"libs-windows": ["user32"],
"sourceFiles": ["terminal.d"],
"importPaths": ["."],
"dflags": ["-mv=arsd.terminal=terminal.d"],
"configurations": [
{
"name": "normal"
},
{
"name": "builtin_emulator",
"versions": ["TerminalDirectToEmulator"],
"dependencies": {
"arsd-official:terminalemulator": "*",
"arsd-official:minigui": "*",
"arsd-official:png":"*",
"arsd-official:jpeg":"*",
"arsd-official:svg":"*",
"arsd-official:bmp":"*"
}
}
]
},
{
"name": "terminalemulator",
"description": "A terminal emulation core as an in-memory library. Also includes mixin templates to assist with creating UIs, etc.",
"targetType": "library",
"importPaths": ["."],
"libs-posix": ["util"],
"sourceFiles": ["terminalemulator.d"],
"dflags": ["-mv=arsd.terminalemulator=terminalemulator.d"],
"dependencies": {
"arsd-official:color_base":"*"
}
},
{
"name": "ttf",
"description": "port of stb_ttf to D",
"importPaths": ["."],
"targetType": "library",
"dflags": ["-mv=arsd.ttf=ttf.d"],
"sourceFiles": ["ttf.d"]
},
{
"name": "color_base",
"description": "Base color, point, image interface definitions",
"targetType": "library",
"importPaths": ["."],
"dflags": ["-mv=arsd.color=color.d"],
"sourceFiles": ["color.d"]
},
{
"name": "database_base",
"description": "Basic database interface definitions. Use one (or more) of the drivers like arsd-official:mysql or arsd-official:postgres instead",
"targetType": "library",
"sourceFiles": ["database.d"],
"importPaths": ["."],
"dflags": ["-mv=arsd.database=database.d"]
},
{
"name": "libssh2_bindings",
"description": "My bindings to libssh2",
"targetType": "library",
"sourceFiles": ["libssh2.d"],
"importPaths": ["."],
"libs": ["ssh2"],
"dflags": ["-mv=arsd.libssh2=libssh2.d"]
},
{
"name": "eventloop",
"description": "My DEPRECATED event loop. Do NOT use in new programs, only offered here because I use it in a lot of old programs.",
"targetType": "sourceLibrary",
"versions": ["with_eventloop"],
"sourceFiles": ["eventloop.d"],
"importPaths": ["."],
"dflags": ["-mv=arsd.eventloop=eventloop.d"]
},
{
"name": "archive",
"description": "Archive file support - tar, tar.xz decoders, and custom format \"arcz\" encoding and decoding. Self-contained.",
"targetType": "library",
"sourceFiles": ["archive.d"],
"importPaths": ["."],
"dflags": ["-mv=arsd.archive=archive.d"]
}
]
}