Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
vibe.d/dub.sdl
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
49 lines (43 sloc)
1.54 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name "vibe-d" | |
description "Event driven web and concurrency framework" | |
homepage "https://vibed.org/" | |
license "MIT" | |
copyright "Copyright © 2012-2020 Sönke Ludwig" | |
authors "Sönke Ludwig" "Mathias 'Geod24' Lang" "Etienne Cimon" "Martin Nowak" \ | |
"Mihails 'Dicebot' Strasuns" "150 contributors total" | |
systemDependencies "Optionally OpenSSL 1.1.x" | |
dependency ":redis" version="*" | |
dependency ":data" version="*" | |
dependency ":mongodb" version="*" | |
dependency ":web" version="*" | |
dependency ":utils" version="*" | |
dependency ":http" version="*" | |
dependency ":mail" version="*" | |
dependency ":stream" version="*" | |
dependency ":tls" version="*" | |
dependency ":crypto" version="*" | |
dependency ":textfilter" version="*" | |
dependency ":inet" version="*" | |
targetType "library" | |
targetName "vibed" | |
// NOTE: "lib" is a path with no D sources to work around an issue in DUB 1.0.0 | |
// and below that results in the standard "source/" path to be added even | |
// if an explicit "sourcePaths" directive is given. | |
sourcePaths "lib" | |
sourceFiles "source/vibe/d.d" "source/vibe/vibe.d" | |
x:ddoxFilterArgs "--unittest-examples" "--min-protection=Protected"\ | |
"--ex" "vibe.core.drivers." "--ex" "vibe.internal." "--ex" "vibe.web.internal."\ | |
"--ex" "diet.internal" "--ex" "stdx." "--ex" "eventcore.internal." "--ex" "eventcore.drivers."\ | |
"--ex" "mir." "--ex" "openssl_version" | |
subPackage "utils" | |
subPackage "data" | |
subPackage "stream" | |
subPackage "tls" | |
subPackage "crypto" | |
subPackage "textfilter" | |
subPackage "inet" | |
subPackage "mail" | |
subPackage "http" | |
subPackage "mongodb" | |
subPackage "redis" | |
subPackage "web" |