Skip to content

Commit

Permalink
Fix dependency syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
lorentey committed Sep 7, 2017
1 parent ce637a7 commit a5766bb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Package.swift
Expand Up @@ -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"),
Expand Down

0 comments on commit a5766bb

Please sign in to comment.