Skip to content

Commit

Permalink
Fix the build permanently
Browse files Browse the repository at this point in the history
  • Loading branch information
nixberg committed Sep 13, 2022
1 parent c6cae6e commit eed608f
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 9 deletions.
8 changes: 4 additions & 4 deletions Package.resolved
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@
"repositoryURL": "https://github.com/nixberg/hexstring-swift",
"state": {
"branch": null,
"revision": "c501ec4e65375e9ea6893997ef3af959ccd84a11",
"version": "0.4.0"
"revision": "a9d1e15e3547037216b8f5556544f38164867725",
"version": "0.5.0"
}
},
{
Expand All @@ -42,8 +42,8 @@
"repositoryURL": "https://github.com/apple/swift-numerics",
"state": {
"branch": null,
"revision": "0a23770641f65a4de61daf5425a37ae32a3fd00d",
"version": "1.0.1"
"revision": "0a5bc04095a675662cf24757cc0640aa2204253b",
"version": "1.0.2"
}
}
]
Expand Down
7 changes: 4 additions & 3 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,10 @@ let package = Package(
],
dependencies: [
.package(url: "https://github.com/apple/swift-algorithms", from: "1.0.0"),
.package(url: "https://github.com/nixberg/crypto-traits-swift", from: "0.2.1"),
.package(url: "https://github.com/nixberg/endianbytes-swift", from: "0.4.0"),
.package(url: "https://github.com/nixberg/hexstring-swift", from: "0.2.0"),

.package(url: "https://github.com/nixberg/crypto-traits-swift", "0.2.1"..<"0.3.0"),
.package(url: "https://github.com/nixberg/endianbytes-swift", "0.5.0"..<"0.6.0"),
.package(url: "https://github.com/nixberg/hexstring-swift", "0.5.0"..<"0.6.0"),
],
targets: [
.target(
Expand Down
2 changes: 1 addition & 1 deletion Sources/BLAKE3/BLAKE3.swift
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import Duplex
import EndianBytes
import SIMDEndianBytes

typealias KeyWords = SIMD8<UInt32>

Expand Down
2 changes: 1 addition & 1 deletion Sources/BLAKE3/ChunkState.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import EndianBytes
import SIMDEndianBytes

struct ChunkState {
var chainingValue: KeyWords
Expand Down

0 comments on commit eed608f

Please sign in to comment.