CryptoSwift.podspec 1.0 KB

123456789101112131415161718
  1. Pod::Spec.new do |s|
  2. s.name = "CryptoSwift"
  3. s.version = "0.7.1"
  4. s.source = { :git => "https://github.com/krzyzanowskim/CryptoSwift.git", :tag => "#{s.version}" }
  5. s.summary = "Cryptography in Swift. SHA, MD5, CRC, PBKDF, Poly1305, HMAC, ChaCha20, Rabbit, Blowfish, AES."
  6. s.description = "Cryptography functions and helpers for Swift implemented in Swift. SHA, MD5, PBKDF1, PBKDF2, CRC, Poly1305, HMAC, ChaCha20, Rabbit, Blowfish, AES."
  7. s.homepage = "https://github.com/krzyzanowskim/CryptoSwift"
  8. s.license = {:type => "Attribution License", :file => "LICENSE"}
  9. s.authors = {'Marcin Krzyżanowski' => 'marcin@krzyzanowskim.com'}
  10. s.social_media_url = "https://twitter.com/krzyzanowskim"
  11. s.ios.deployment_target = "8.0"
  12. s.osx.deployment_target = "10.9"
  13. s.watchos.deployment_target = "2.0"
  14. s.tvos.deployment_target = "9.0"
  15. s.source_files = "Sources/CryptoSwift/**/*.swift"
  16. s.requires_arc = true
  17. s.pod_target_xcconfig = { 'SWIFT_VERSION' => '4.0', 'SWIFT_OPTIMIZATION_LEVEL' => '-Owholemodule' }
  18. end