Use `from` instead of `upToNextMinor` for OpenCombine (#34)

This comes after I was reminded that we're using an old version in https://github.com/swiftwasm/carton/pull/33.
This commit is contained in:
Max Desiatov 2020-07-08 13:53:50 +01:00 committed by GitHub
parent 2013efcf9e
commit bfe86508f6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 12 additions and 5 deletions

View File

@ -8,14 +8,21 @@ let package = Package(
platforms: [.macOS(.v10_15)],
dependencies: [
.package(url: "https://github.com/swift-server/async-http-client.git", from: "1.1.1"),
.package(url: "https://github.com/apple/swift-argument-parser", .upToNextMinor(from: "0.2.0")),
.package(url: "https://github.com/apple/swift-tools-support-core.git", .upToNextMinor(from: "0.1.3")),
.package(url: "https://github.com/OpenCombine/OpenCombine.git", .upToNextMinor(from: "0.10.0")),
.package(
url: "https://github.com/apple/swift-argument-parser",
.upToNextMinor(from: "0.2.0")
),
.package(
url: "https://github.com/apple/swift-tools-support-core.git",
.upToNextMinor(from: "0.1.3")
),
.package(url: "https://github.com/OpenCombine/OpenCombine.git", from: "0.10.0"),
.package(url: "https://github.com/vapor/vapor.git", .upToNextMinor(from: "4.5.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 which this package depends on.
// 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 which this package depends on.
.target(
name: "carton",
dependencies: [