| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- {
- "name": "hunt-minihttp",
- "targetType": "executable",
- "description": "A mini http server powered by Hunt.",
- "copyright": "Copyright (C) 2017-2020, HuntLabs",
- "homepage": "https://www.huntlabs.net",
- "license": "Apache-2.0",
- "dependencies": {
- "hunt": "~>1.5.0-beta.3",
- "std_data_json": "~>0.18.2"
- },
- "versions": [
- "POSTGRESQL1"
- ],
- "configurations": [
- {
- "name": "default",
- "sourcePaths": ["http"],
- "libs-posix": [
- "http_parser"
- ],
- "lflags-posix": [
- "-Lhttp-parser/"
- ],
- "versions": [
- "HTTP"
- ]
- },
- {
- "name": "minihttp",
- "sourcePaths": ["pico"],
- "libs-posix": [
- "picohttpparser"
- ],
- "lflags-posix": [
- "-Lpicohttpparser/"
- ],
- "versions": [
- "MINIHTTP"
- ]
- },
- {
- "name": "mmap",
- "sourcePaths": ["mmap"],
- "libs-posix": [
- "picohttpparser"
- ],
- "lflags-posix": [
- "-Lpicohttpparser/"
- ],
- "versions": [
- "MMAP"
- ]
- }
- ],
- "subConfigurations": {
- "hunt-database": "postgresql"
- }
- }
|