Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove dependency on argument-parser #61

Merged
merged 1 commit into from
Sep 25, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
# See https://swift.org/CONTRIBUTORS.txt for Swift project authors

.DS_Store
/.build
.build
/Packages
/*.xcodeproj
xcuserdata/
Expand Down
4 changes: 1 addition & 3 deletions Package.swift
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

Expand Down
49 changes: 0 additions & 49 deletions [email protected]

This file was deleted.

31 changes: 31 additions & 0 deletions Tools/Package.swift
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-graph"]),
],
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: "dump-unified-graph"
),
]
)