blob: 72b7fbc3b5de39eff8bfc55ea232d746112b3824 [file] [log] [blame]
Nikolayabd0df72018-01-24 22:46:16 +07001{
2 "name": "apache-thrift",
3 "description": "Apache Thrift D library",
4 "authors": [
5 "Apache Thrift Developers <dev@thrift.apache.org>"
6 ],
7 "homepage": "http://thrift.apache.org",
8 "license": "Apache-2.0",
9 "dependencies": {
10 "libevent": {
James E. King III12f8b142018-09-14 13:11:37 +000011 "version": "~>2.0.2"
Nikolayabd0df72018-01-24 22:46:16 +070012 }
13 },
mingwugmail4abc5cf2021-05-26 00:38:22 +020014 "systemDependencies": "On systems with native openssl 1.0.x use dub package openssl~>1.1, on systems with native openssl 1.1.x use dub package openssl~>2.0.3 (with build bug fix: https://github.com/D-Programming-Deimos/openssl/issues/63)",
15 "configurations": [
16 {
17 "name": "use_openssl_1_0",
18 "versions": ["use_openssl_1_0_x"],
19 "dependencies": {
20 "openssl": {
21 "version": "~>1.1.6"
22 }
23 }
24 },
25 {
26 "name": "use_openssl_1_1",
27 "versions": ["use_openssl_1_1_x"],
28 "dependencies": {
29 "openssl": {
30 "version": "~>2.0.3"
31 }
32 }
33 }
34 ],
Nikolayabd0df72018-01-24 22:46:16 +070035 "targetType": "library",
36 "sourcePaths": [
37 "lib/d/src"
38 ],
39 "importPaths": [
40 "lib/d/src"
41 ],
42 "excludedSourceFiles": [
James E. King III12f8b142018-09-14 13:11:37 +000043 "lib/d/src/thrift/index.d"
Nikolayabd0df72018-01-24 22:46:16 +070044 ]
45}