Skip to content

Commit

Permalink
Updated for Xcode 16.
Browse files Browse the repository at this point in the history
  • Loading branch information
wolfmcnally committed Sep 18, 2024
1 parent 4caa969 commit cd5ad08
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
10 changes: 5 additions & 5 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ let package = Package(
targets: ["BCCrypto", "BCWally", "CryptoBase", "SSKR"]),
],
dependencies: [
.package(url: "https://github.com/WolfMcNally/WolfBase", from: "6.0.0"),
.package(url: "https://github.com/krzyzanowskim/CryptoSwift", from: "1.8.0"),
.package(url: "https://github.com/BlockchainCommons/secp256k1-zkp.swift", from: "0.5.0"),
.package(url: "https://github.com/BlockchainCommons/BCSwiftRandom", from: "1.0.0"),
.package(url: "https://github.com/tesseract-one/Blake2.swift", from: "0.2.0"),
.package(url: "https://github.com/WolfMcNally/WolfBase.git", from: "6.0.0"),
.package(url: "https://github.com/krzyzanowskim/CryptoSwift.git", from: "1.8.0"),
.package(url: "https://github.com/BlockchainCommons/secp256k1-zkp.swift.git", from: "0.5.0"),
.package(url: "https://github.com/BlockchainCommons/BCSwiftRandom.git", from: "1.0.0"),
.package(url: "https://github.com/tesseract-one/Blake2.swift.git", from: "0.2.0"),
],
targets: [
.target(
Expand Down
3 changes: 2 additions & 1 deletion Sources/BCCrypto/SSKR.swift
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,8 @@ public extension SSKRShare {
}
}

extension SSKRShare: Hashable {
extension SSKRShare: @retroactive Equatable {}
extension SSKRShare: @retroactive Hashable {
public func hash(into hasher: inout Hasher) {
hasher.combine(data)
}
Expand Down

0 comments on commit cd5ad08

Please sign in to comment.