-
Notifications
You must be signed in to change notification settings - Fork 0
/
clib.json
68 lines (68 loc) · 1.31 KB
/
clib.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "libys",
"version": "0.0.1",
"author": "Matthew Zito",
"repo": "exbotanical/libys",
"license": "MIT",
"description": "The Modern Web Application Framework for C",
"keywords": [
"rest",
"api",
"server framework",
"multiplexing",
"concurrency"
],
"src": [
"include/libys.h",
"src/cache.c",
"src/cache.h",
"src/client.h",
"src/config.c",
"src/config.h",
"src/const.c",
"src/cookie.c",
"src/cookie.h",
"src/cors.c",
"src/cors.h",
"src/file.c",
"src/header.c",
"src/header.h",
"src/ip.c",
"src/ip.h",
"src/logger.c",
"src/logger.h",
"src/middleware.c",
"src/middleware.h",
"src/path.c",
"src/path.h",
"src/regexpr.c",
"src/regexpr.h",
"src/request.c",
"src/request.h",
"src/response.c",
"src/response.h",
"src/router.c",
"src/router.h",
"src/server.c",
"src/server.h",
"src/sighandler.c",
"src/sighandler.h",
"src/time.c",
"src/trie.c",
"src/trie.h",
"src/url.c",
"src/url.h",
"src/util.c",
"src/util.h",
"src/xmalloc.c",
"src/xmalloc.h"
],
"dependencies": {
"exbotanical/libhash": "0.0.6",
"exbotanical/lib.thread": "0.0.1",
"exbotanical/libutil": "0.0.9"
},
"development": {
"thlorenz/tap.c": "*"
}
}