From 9b48170872a4bfe3f21051a515cff70c512c775d Mon Sep 17 00:00:00 2001 From: Eric Rabil Date: Thu, 1 Sep 2022 15:34:17 -0400 Subject: [PATCH] Upgrade to Swexy 1.1.0 --- Package.swift | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/Package.swift b/Package.swift index 1536d0d..201060d 100644 --- a/Package.swift +++ b/Package.swift @@ -12,20 +12,19 @@ let package = Package( // Products define the executables and libraries a package produces, and make them visible to other packages. .library( name: "Pwomise", - targets: ["Pwomise"]), + targets: ["Pwomise"]) ], 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/Swog", .upToNextMajor(from: "1.0.7")) + .package(url: "https://github.com/EricRabil/Swexy", .upToNextMajor(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: "Pwomise", - dependencies: ["Swexy", "Swog"]), + dependencies: ["Swexy"]), .testTarget( name: "PwomiseTests", dependencies: ["Pwomise"]),