From a5766bb11eb2681f58593cc33d1103ef20aa85ad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ka=CC=81roly=20Lo=CC=8Brentey?= Date: Thu, 7 Sep 2017 14:59:03 +0200 Subject: [PATCH] Fix dependency syntax --- Package.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Package.swift b/Package.swift index 1239612..8d5f742 100644 --- a/Package.swift +++ b/Package.swift @@ -7,8 +7,8 @@ let package = Package( .library(name: "GlueKit", type: .dynamic, targets: ["GlueKit"]) ], dependencies: [ - .package(url: "https://github.com/attaswift/SipHash", .from("1.2")), - .package(url: "https://github.com/attaswift/BTree", .from("4.1")) + .package(url: "https://github.com/attaswift/SipHash", from: "1.2.0"), + .package(url: "https://github.com/attaswift/BTree", from: "4.1.0") ], targets: [ .target(name: "GlueKit", dependencies: ["BTree", "SipHash"], path: "Sources"),