Skip to content

Commit a5766bb

Browse files
committed
Fix dependency syntax
1 parent ce637a7 commit a5766bb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Package.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ let package = Package(
77
.library(name: "GlueKit", type: .dynamic, targets: ["GlueKit"])
88
],
99
dependencies: [
10-
.package(url: "https://github.com/attaswift/SipHash", .from("1.2")),
11-
.package(url: "https://github.com/attaswift/BTree", .from("4.1"))
10+
.package(url: "https://github.com/attaswift/SipHash", from: "1.2.0"),
11+
.package(url: "https://github.com/attaswift/BTree", from: "4.1.0")
1212
],
1313
targets: [
1414
.target(name: "GlueKit", dependencies: ["BTree", "SipHash"], path: "Sources"),

0 commit comments

Comments
 (0)