Skip to content

Commit

Permalink
Add Swog as an explicit dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
EricRabil committed Aug 11, 2022
1 parent cbd70ea commit f57afe6
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,15 @@ let package = Package(
dependencies: [
// Dependencies declare other packages that this package depends on.
// .package(url: /* package url */, from: "1.0.0"),
.package(url: "https://github.com/EricRabil/Swexy", .upToNextMajor(from: "1.0.4"))
.package(url: "https://github.com/EricRabil/Swexy", .upToNextMajor(from: "1.0.4")),
.package(url: "https://github.com/EricRabil/Swog", .upToNextMajor(from: "1.0.7"))
],
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: "Pwomise",
dependencies: ["Swexy"]),
dependencies: ["Swexy", "Swog"]),
.testTarget(
name: "PwomiseTests",
dependencies: ["Pwomise"]),
Expand Down

0 comments on commit f57afe6

Please sign in to comment.