Update argument parser

This commit is contained in:
Sven Weidauer 2022-10-08 11:47:32 +02:00
parent 0bb53ea949
commit 3adefbf70e
2 changed files with 21 additions and 23 deletions

View file

@ -1,25 +1,23 @@
{ {
"object": { "pins" : [
"pins": [
{ {
"package": "RBBJSON", "identity" : "rbbjson",
"repositoryURL": "https://github.com/robb/RBBJSON", "kind" : "remoteSourceControl",
"state": { "location" : "https://github.com/robb/RBBJSON",
"branch": "main", "state" : {
"revision": "102c970283e105d7c5be2e29630db29c808c20eb", "branch" : "main",
"version": null "revision" : "102c970283e105d7c5be2e29630db29c808c20eb"
} }
}, },
{ {
"package": "swift-argument-parser", "identity" : "swift-argument-parser",
"repositoryURL": "https://github.com/apple/swift-argument-parser", "kind" : "remoteSourceControl",
"state": { "location" : "https://github.com/apple/swift-argument-parser",
"branch": null, "state" : {
"revision": "92646c0cdbaca076c8d3d0207891785b3379cbff", "revision" : "9f39744e025c7d377987f30b03770805dcb0bcd1",
"version": "0.3.1" "version" : "1.1.4"
} }
} }
] ],
}, "version" : 2
"version": 1
} }

View file

@ -9,7 +9,7 @@ let package = Package(
.macOS("10.15.4"), .macOS("10.15.4"),
], ],
dependencies: [ dependencies: [
.package(url: "https://github.com/apple/swift-argument-parser", .upToNextMinor(from: "0.3.1")), .package(url: "https://github.com/apple/swift-argument-parser", .upToNextMinor(from: "1.1.4")),
.package(url: "https://github.com/robb/RBBJSON", branch: "main"), .package(url: "https://github.com/robb/RBBJSON", branch: "main"),
], ],
targets: [ targets: [