-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove dependency on argument-parser
- Loading branch information
Showing
3 changed files
with
32 additions
and
52 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,4 @@ | ||
// swift-tools-version:5.2 | ||
// In order to support users running on the latest Xcodes, please ensure that | ||
// [email protected] is kept in sync with this file. | ||
// swift-tools-version:5.5 | ||
/* | ||
This source file is part of the Swift.org open source project | ||
|
||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
// swift-tools-version:5.5 | ||
/* | ||
This source file is part of the Swift.org open source project | ||
Copyright (c) 2023 Apple Inc. and the Swift project authors | ||
Licensed under Apache License v2.0 with Runtime Library Exception | ||
See https://swift.org/LICENSE.txt for license information | ||
See https://swift.org/CONTRIBUTORS.txt for Swift project authors | ||
*/ | ||
|
||
import PackageDescription | ||
|
||
let package = Package( | ||
name: "Tools", | ||
products: [ | ||
.executable(name: "dump-unified-graph", targets: ["dump-unified-grap"]), | ||
], | ||
dependencies: [ | ||
.package(name: "SymbolKit", path: "../."), | ||
.package(url: "https://github.com/apple/swift-argument-parser", from: "1.2.2"), | ||
], | ||
targets: [ | ||
.executableTarget( | ||
name: "dump-unified-graph", | ||
dependencies: [ | ||
.product(name: "SymbolKit", package: "SymbolKit"), | ||
.product(name: "ArgumentParser", package: "swift-argument-parser") | ||
], | ||
path: "markdown-tool" | ||
), | ||
] | ||
) |