[Add] BideaseConnect 1.0.79
[CocoaPods.git] / Specs / 9 / c / a / scrypt / 1.7 / scrypt.podspec.json
blob0c6c002229c8573aeb5eb32068dfa37a9939b6f0
2   "name": "scrypt",
3   "version": "1.7",
4   "summary": "Scrypt implementation in vanilla Swift for iOS ans macOS",
5   "description": "Scrypt implementation in vanilla Swift, intended for use together with a Cryptoswift pod",
6   "homepage": "https://github.com/shamatar/scrypt-cryptoswift",
7   "license": "Apache License 2.0",
8   "authors": {
9     "Alex Vlasov": "alex.m.vlasov@gmail.com"
10   },
11   "source": {
12     "git": "https://github.com/shamatar/scrypt-cryptoswift.git",
13     "tag": "1.7"
14   },
15   "social_media_url": "https://twitter.com/shamatar",
16   "swift_version": "4.1",
17   "module_name": "scrypt",
18   "platforms": {
19     "ios": "9.0",
20     "osx": "10.11"
21   },
22   "source_files": [
23     "scrypt/**/*.{swift}",
24     "scrypt/Cimpl.{c,h}",
25     "scrypt/scrypt.h"
26   ],
27   "preserve_paths": "scrypt/module.modulemap",
28   "private_header_files": "scrypt/Cimpl.h",
29   "public_header_files": "scrypt/scrypt.h",
30   "requires_arc": true,
31   "dependencies": {
32     "CryptoSwift": [
33       "~> 0.11"
34     ]
35   },
36   "pod_target_xcconfig": {
37     "SWIFT_WHOLE_MODULE_OPTIMIZATION": "YES",
38     "SWIFT_OPTIMIZATION_LEVEL": "-O",
39     "SWIFT_COMPILATION_MODE": "wholemodule",
40     "SWIFT_DISABLE_SAFETY_CHECKS": "YES",
41     "SWIFT_ENFORCE_EXCLUSIVE_ACCESS": "compile-time",
42     "GCC_UNROLL_LOOPS": "YES",
43     "DEFINES_MODULE": "YES"
44   },
45   "xcconfig": {
46     "SWIFT_INCLUDE_PATHS": "$(PODS_TARGET_SRCROOT)/scrypt"
47   }