Skip to content

Commit 3f28ea7

Browse files
committed
Fully get rid of swift-backtrace
1 parent d09153d commit 3f28ea7

File tree

3 files changed

+5
-18
lines changed

3 files changed

+5
-18
lines changed

Package.resolved

Lines changed: 2 additions & 11 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Package.swift

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,10 @@ let package = Package(
1919
dependencies: {
2020
var res = [Package.Dependency]()
2121
res.append(.package(url: "https://github.com/apple/swift-argument-parser.git", from: "1.0.0"))
22-
res.append(.package(url: "https://github.com/apple/swift-log.git", from: "1.4.2"))
23-
res.append(.package(url: "https://github.com/swift-server/swift-backtrace.git", from: "1.3.1"))
24-
res.append(.package(url: "https://github.com/xcode-actions/clt-logger.git", from: "0.4.0"))
22+
res.append(.package(url: "https://github.com/apple/swift-log.git", from: "1.4.2"))
23+
res.append(.package(url: "https://github.com/xcode-actions/clt-logger.git", from: "0.4.0"))
2524
#if !canImport(System)
26-
res.append(.package(url: "https://github.com/apple/swift-system.git", from: "1.0.0"))
25+
res.append(.package(url: "https://github.com/apple/swift-system.git", from: "1.0.0"))
2726
#endif
2827
return res
2928
}(),
@@ -39,7 +38,6 @@ let package = Package(
3938

4039
.target(name: "signal-handling-tests-helper", dependencies: [
4140
.product(name: "ArgumentParser", package: "swift-argument-parser"),
42-
.product(name: "Backtrace", package: "swift-backtrace"),
4341
.product(name: "CLTLogger", package: "clt-logger"),
4442
.product(name: "Logging", package: "swift-log"),
4543
.target(name: "SignalHandling")

Sources/signal-handling-tests-helper/main.swift

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import Foundation
22

33
import ArgumentParser
4-
import Backtrace
54

65

76

@@ -21,5 +20,4 @@ struct SignalHandlingTestsHelper : ParsableCommand {
2120

2221
}
2322

24-
//Backtrace.install()
2523
SignalHandlingTestsHelper.main()

0 commit comments

Comments
 (0)