Skip to content

Commit

Permalink
Updated Package.swift.
Browse files Browse the repository at this point in the history
  • Loading branch information
kasei committed Sep 21, 2018
1 parent 54a7d4d commit 1e70598
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions Package.swift
@@ -1,4 +1,4 @@
// swift-tools-version:4.0
// swift-tools-version:4.2
// The swift-tools-version declares the minimum version of Swift required to build this package.

import PackageDescription
Expand All @@ -11,7 +11,7 @@ let package = Package(
targets: ["SPARQLSyntax"]),
],
dependencies: [
.package(url: "https://github.com/kasei/swift-serd.git", from: "0.0.0"),
.package(url: "https://github.com/kasei/swift-serd.git", from: "0.0.3"),
],
targets: [
.target(
Expand All @@ -24,9 +24,11 @@ let package = Package(
),
.target(
name: "SPARQLSyntax",
dependencies: []),
dependencies: ["serd"]
),
.testTarget(
name: "SPARQLSyntaxTests",
dependencies: ["SPARQLSyntax"]),
dependencies: ["SPARQLSyntax"]
),
]
)

0 comments on commit 1e70598

Please sign in to comment.