| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- {
- "name": "fwb",
- "description": "A simple vibe.d server application.",
- "copyright": "Copyright © 2015, jin",
- "authors": [
- "jin",
- "Sönke Ludwig"
- ],
- "dependencies": {
- "vibe-d": "0.8.5",
- "mir-random": "2.2.3",
- "vibe-d:tls": "0.8.5"
- },
- "targetType": "executable",
- "sourcePaths": [],
- "subConfigurations": {
- "vibe-d": "vibe-core",
- "vibe-d:tls": "notls"
- },
- "versions": [
- "VibeManualMemoryManagement"
- ],
- "configurations": [
- {
- "name": "mongodb",
- "mainSourceFile": "source/mongodb.d"
- },
- {
- "name": "postgresql",
- "mainSourceFile": "source/postgresql.d",
- "dependencies": {
- "vibe-d-postgresql": "2.0.2"
- }
- }
- ],
- "buildTypes": {
- "debug": {
- "buildOptions": ["debugMode", "optimize"]
- },
- "release": {
- "buildOptions": ["releaseMode", "optimize", "inline"],
- "dflags": ["-boundscheck=off", "-mcpu=native"],
- "dflags-ldc": ["-flto=thin"]
- }
- }
- }
|