-
Notifications
You must be signed in to change notification settings - Fork 1
/
dub.json
49 lines (49 loc) · 959 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"authors": [
"Charles Gregory"
],
"copyright": "Copyright © 2021, Charles Gregory",
"dependencies": {
"dhtslib": "~>0.14.0+htslib-1.13"
},
"description": "Uses dpryan79's chromosome mappings to convert contig names",
"license": "MIT",
"name": "recontig",
"preBuildCommands": ["./version.sh"],
"configurations": [
{
"name": "standard",
"targetType": "executable"
},
{
"name": "unittest",
"excludedSourceFiles": ["source/app.d"]
},
{
"name":"static-alpine",
"targetType": "executable",
"dflags-ldc": [
"-link-defaultlib-shared=false",
"-static",
"--linker=gold",
"-L-lz",
"-L-lbz2",
"-L-ldeflate",
"-L-llzma",
"-L-lcurl",
"-L-lssl",
"-L-lssh2",
"-L-lcrypto"
],
"sourceFiles": ["/usr/local/lib/mimalloc-2.0/mimalloc.o"]
},
{
"name": "pyd",
"targetType": "executable",
"versions": ["usepyd"],
"dependencies": {
"pyd": "~>0.14.1"
}
}
]
}