1{ 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": { 11 "version": "~>2.0.2" 12 } 13 }, 14 "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 ], 35 "targetType": "library", 36 "sourcePaths": [ 37 "lib/d/src" 38 ], 39 "importPaths": [ 40 "lib/d/src" 41 ], 42 "excludedSourceFiles": [ 43 "lib/d/src/thrift/index.d" 44 ] 45} 46