-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathdub.json
33 lines (29 loc) · 910 Bytes
/
dub.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
{
"name": "dgraph",
"description": "A library for creating, analysing and manipulating graphs (networks). It aims to be fast and memory-efficient while also being easy to use and extend.",
"authors": ["Joseph Rushton Wakeling"],
"copyright": "Copyright © 2013 Joseph Rushton Wakeling",
"homepage": "https://github.com/WebDrake/Dgraph",
"license": "GPL-3.0 or later",
"targetType": "sourceLibrary",
"subPackages": [
{
"name": "graphtest",
"targetType": "executable",
"sourcePaths": ["util/graphtest/source/"],
"dependencies": { "dgraph": ">=0.0.1" }
},
{
"name": "betweenness50",
"targetType": "executable",
"sourcePaths": ["util/betweenness50/source/"],
"dependencies": { "dgraph": ">=0.0.1" }
},
{
"name": "betweenness10k",
"targetType": "executable",
"sourcePaths": ["util/betweenness10k/source/"],
"dependencies": { "dgraph": ">=0.0.1" }
}
]
}