Skip to content

Commit

Permalink
Update package.swift for swift 5.7 (#261)
Browse files Browse the repository at this point in the history
* Update package.swift for swift 5.9

* Moved to 5.7 due to github update backlog.
  • Loading branch information
bsneed authored Nov 16, 2023
1 parent f1bf66a commit 3fbc48f
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// swift-tools-version:5.3
// swift-tools-version:5.7
// The swift-tools-version declares the minimum version of Swift required to build this package.

import PackageDescription
Expand All @@ -20,18 +20,16 @@ let package = Package(
dependencies: [
// Dependencies declare other packages that this package depends on.
// .package(url: /* package url */, from: "1.0.0"),
.package(
name: "Sovran",
url: "https://github.com/segmentio/Sovran-Swift.git",
from: "1.1.0"
)
.package(url: "https://github.com/segmentio/sovran-swift.git", from: "1.1.0")
],
targets: [
// Targets are the basic building blocks of a package. A target can define a module or a test suite.
// Targets can depend on other targets in this package, and on products in packages this package depends on.
.target(
name: "Segment",
dependencies: ["Sovran"]),
dependencies: [
.product(name: "Sovran", package: "sovran-swift")
]),
.testTarget(
name: "Segment-Tests",
dependencies: ["Segment"]),
Expand Down

0 comments on commit 3fbc48f

Please sign in to comment.