Update CryptoSwift to 1.7.1 (#4916)

To fix Swift 5.8 warnings
This commit is contained in:
JP Simard 2023-04-21 10:15:44 -04:00 committed by GitHub
parent d601917e40
commit 9c2525139a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 6 deletions

View File

@ -14,8 +14,8 @@
"kind" : "remoteSourceControl",
"location" : "https://github.com/krzyzanowskim/CryptoSwift.git",
"state" : {
"revision" : "95c18f1c1bc44d5547728621ed680850368f7a45",
"version" : "1.7.0"
"revision" : "eee9ad754926c40a0f7e73f152357d37b119b7fa",
"version" : "1.7.1"
}
},
{

View File

@ -16,7 +16,7 @@ let package = Package(
.package(url: "https://github.com/jpsim/Yams.git", from: "5.0.5"),
.package(url: "https://github.com/scottrhoyt/SwiftyTextTable.git", from: "0.9.0"),
.package(url: "https://github.com/JohnSundell/CollectionConcurrencyKit.git", from: "0.2.0"),
.package(url: "https://github.com/krzyzanowskim/CryptoSwift.git", .upToNextMinor(from: "1.7.0"))
.package(url: "https://github.com/krzyzanowskim/CryptoSwift.git", .upToNextMinor(from: "1.7.1"))
],
targets: [
.plugin(

View File

@ -36,10 +36,10 @@ def swiftlint_repos(bzlmod = False):
http_archive(
name = "com_github_krzyzanowskim_cryptoswift",
sha256 = "da391c5c958dfbe35f461772b9a680f5cf5018ccc358ef92a5d8eb9eeb168004",
sha256 = "ad561c63d1e7954dbadd88cf5588efe43236c382ea7dc964996c09e87b7d4fd1",
build_file = "@SwiftLint//bazel:CryptoSwift.BUILD",
strip_prefix = "CryptoSwift-1.7.0",
url = "https://github.com/krzyzanowskim/CryptoSwift/archive/refs/tags/1.7.0.tar.gz",
strip_prefix = "CryptoSwift-1.7.1",
url = "https://github.com/krzyzanowskim/CryptoSwift/archive/refs/tags/1.7.1.tar.gz",
)
def _swiftlint_repos_bzlmod(_):