blob: f02a8f596b70de06aa708165bb3ae973b5e69e77 [file] [log] [blame]
{
"name": "scrypt",
"version": "2.0",
"summary": "Scrypt implementation in vanilla Swift for iOS ans macOS",
"description": "Scrypt implementation in vanilla Swift, intended for use together with a Cryptoswift pod",
"homepage": "https://github.com/shamatar/scrypt-cryptoswift",
"license": "Apache License 2.0",
"authors": {
"Alex Vlasov": "alex.m.vlasov@gmail.com"
},
"source": {
"git": "https://github.com/shamatar/scrypt-cryptoswift.git",
"tag": "2.0"
},
"social_media_url": "https://twitter.com/shamatar",
"swift_version": "4.1",
"module_name": "scrypt",
"platforms": {
"ios": "9.0",
"osx": "10.11"
},
"source_files": [
"scrypt/**/*.{swift}",
"scrypt/Cimpl.{c,h}",
"scrypt/scrypt.h"
],
"preserve_paths": "scrypt/module.modulemap",
"private_header_files": "scrypt/Cimpl.h",
"public_header_files": "scrypt/scrypt.h",
"requires_arc": true,
"dependencies": {
"CryptoSwift": [
"~> 0.11"
]
},
"pod_target_xcconfig": {
"SWIFT_WHOLE_MODULE_OPTIMIZATION": "YES",
"SWIFT_OPTIMIZATION_LEVEL": "-O",
"SWIFT_COMPILATION_MODE": "wholemodule",
"SWIFT_DISABLE_SAFETY_CHECKS": "YES",
"SWIFT_ENFORCE_EXCLUSIVE_ACCESS": "compile-time",
"GCC_UNROLL_LOOPS": "YES",
"DEFINES_MODULE": "YES"
},
"xcconfig": {
"SWIFT_INCLUDE_PATHS": "$(PODS_TARGET_SRCROOT)/scrypt"
}
}