|
@@ -1,6 +1,6 @@
|
|
Pod::Spec.new do |s|
|
|
Pod::Spec.new do |s|
|
|
s.name = "CryptoSwift"
|
|
s.name = "CryptoSwift"
|
|
- s.version = "0.7.1"
|
|
|
|
|
|
+ s.version = "0.7.2"
|
|
s.source = { :git => "https://github.com/krzyzanowskim/CryptoSwift.git", :tag => "#{s.version}" }
|
|
s.source = { :git => "https://github.com/krzyzanowskim/CryptoSwift.git", :tag => "#{s.version}" }
|
|
s.summary = "Cryptography in Swift. SHA, MD5, CRC, PBKDF, Poly1305, HMAC, ChaCha20, Rabbit, Blowfish, AES."
|
|
s.summary = "Cryptography in Swift. SHA, MD5, CRC, PBKDF, Poly1305, HMAC, ChaCha20, Rabbit, Blowfish, AES."
|
|
s.description = "Cryptography functions and helpers for Swift implemented in Swift. SHA, MD5, PBKDF1, PBKDF2, CRC, Poly1305, HMAC, ChaCha20, Rabbit, Blowfish, AES."
|
|
s.description = "Cryptography functions and helpers for Swift implemented in Swift. SHA, MD5, PBKDF1, PBKDF2, CRC, Poly1305, HMAC, ChaCha20, Rabbit, Blowfish, AES."
|
|
@@ -14,5 +14,5 @@ Pod::Spec.new do |s|
|
|
s.tvos.deployment_target = "9.0"
|
|
s.tvos.deployment_target = "9.0"
|
|
s.source_files = "Sources/CryptoSwift/**/*.swift"
|
|
s.source_files = "Sources/CryptoSwift/**/*.swift"
|
|
s.requires_arc = true
|
|
s.requires_arc = true
|
|
- s.pod_target_xcconfig = { 'SWIFT_VERSION' => '4.0', 'SWIFT_OPTIMIZATION_LEVEL' => '-Owholemodule' }
|
|
|
|
|
|
+ s.pod_target_xcconfig = { 'SWIFT_VERSION' => '4.0', 'SWIFT_OPTIMIZATION_LEVEL' => '-Owholemodule', 'SWIFT_DISABLE_SAFETY_CHECKS' => 'YES', 'GCC_UNROLL_LOOPS' => 'YES'}
|
|
end
|
|
end
|