-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathdub.json
More file actions
34 lines (34 loc) · 855 Bytes
/
dub.json
File metadata and controls
34 lines (34 loc) · 855 Bytes
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
{
"name": "fluent-logger",
"description": "A structured logger for Fluentd.",
"authors": ["Masahiro Nakagawa"],
"homepage": "https://github.com/fluent/fluent-logger-d",
"license": "Apache License, Version 2.0",
"copyright": "Copyright (c) 2012- Masahiro Nakagawa",
"importPaths": ["src"],
"targetPath": "bin",
"dependencies": {
"msgpack-d": "~>0.9.1"
},
"configurations": [
{
"name": "library",
"targetName": "fluent-logger",
"targetType": "library",
},
{
"name": "post-example",
"targetType": "executable",
"targetName": "post",
"sourceFiles": ["example/post.d"],
"mainSourceFile": "example/post.d"
},
{
"name": "post-mt-example",
"targetType": "executable",
"targetName": "post_mt",
"sourceFiles": ["example/post_mt.d"],
"mainSourceFile": "example/post_mt.d"
}
],
}