Skip to content

Commit 49cbf97

Browse files
committed
Rename swiftdt to swift-inspect
1 parent b8b9fc7 commit 49cbf97

File tree

20 files changed

+30
-30
lines changed

20 files changed

+30
-30
lines changed

tools/swiftdt/Package.swift renamed to tools/swift-inspect/Package.swift

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,22 +4,22 @@
44
import PackageDescription
55

66
let package = Package(
7-
name: "swiftdt",
7+
name: "swift-inspect",
88
dependencies: [
99
.package(url: "https://github.com/apple/swift-argument-parser", from: "0.0.1"),
1010
],
1111
targets: [
1212
// Targets are the basic building blocks of a package. A target can define a module or a test suite.
1313
// Targets can depend on other targets in this package, and on products in packages which this package depends on.
1414
.target(
15-
name: "swiftdt",
15+
name: "swift-inspect",
1616
dependencies: [
1717
"SymbolicationShims",
1818
.product(name: "ArgumentParser", package: "swift-argument-parser"),
1919
]),
2020
.testTarget(
21-
name: "swiftdtTests",
22-
dependencies: ["swiftdt"]),
21+
name: "swiftInspectTests",
22+
dependencies: ["swift-inspect"]),
2323
.systemLibrary(
2424
name: "SymbolicationShims")
2525
]
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
# swiftdt
1+
# swift-inspect
22

33
A description of this package.

tools/swiftdt/Sources/swiftdt/main.swift renamed to tools/swift-inspect/Sources/swift-inspect/main.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ func withReflectionContext(
8282
try body(context)
8383
}
8484

85-
struct Swiftdt: ParsableCommand {
85+
struct SwiftInspect: ParsableCommand {
8686
static let configuration = CommandConfiguration(
8787
abstract: "Swift runtime debug tool",
8888
subcommands: [
@@ -119,4 +119,4 @@ struct DumpMetadataAllocations: ParsableCommand {
119119
}
120120
}
121121

122-
Swiftdt.main()
122+
SwiftInspect.main()

0 commit comments

Comments
 (0)