8 "summary": "A temporary fork of Swift-Sodium to workaround a CocoaPods validation issue",
9 "description": "There is an issue with the Sodium.podspec when working with the Xcode 12 toolchain due the build setting changes in preparation for Apple Silicon.\nIf you use Sodium as a consumer, you can work around it in the the `Podfile`, but if Sodium is one of the dependencies of your pod, it will fail to pass the `pod spec lint` validation until the fix is pushed upstream.\n\nIn the meantime, you can use this fork in your `.podspec`:\n\n```diff\n- spec.dependency \"Sodium\"\n+ spec.dependency \"Sodium-Fork\", \"0.8.1\"\n```\n\n**Warning** The `0.8.1` setup only works with CocoaPods 1.9.3 and Xcode 12.0.\nBoth CocoaPods 1.10.0 and Xcode 12.2 have changes that result in failed validation.",
10 "homepage": "https://github.com/mokagio/swift-sodium",
11 "social_media_url": "https://twitter.com/mokagio",
16 "git": "https://github.com/mokagio/swift-sodium.git",
25 "vendored_libraries": "Sodium/libsodium/libsodium-ios.a"
28 "vendored_libraries": "Sodium/libsodium/libsodium-osx.a"
31 "vendored_libraries": "Sodium/libsodium/libsodium-watchos.a"
33 "source_files": "Sodium/**/*.{swift,h}",
34 "private_header_files": "Sodium/libsodium/*.h",
35 "preserve_paths": "Sodium/libsodium/module.modulemap",
36 "pod_target_xcconfig": {
37 "SWIFT_INCLUDE_PATHS": "$(PODS_TARGET_SRCROOT)/Sodium/libsodium",
38 "EXCLUDED_ARCHS[sdk=iphonesimulator*]": "arm64",
39 "EXCLUDED_ARCHS[sdk=watchsimulator*]": "arm64"
41 "user_target_xcconfig": {
42 "EXCLUDED_ARCHS[sdk=iphonesimulator*]": "arm64",
43 "EXCLUDED_ARCHS[sdk=watchsimulator*]": "arm64"