Skip to content

Commit 9d53fb9

Browse files
committed
Update SwiftPM Dependency
1 parent 413fb09 commit 9d53fb9

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
.DS_Store
22
/.build
3+
/.swiftpm
34
/Packages
45
/*.xcodeproj
56
Package.resolved

Package.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// swift-tools-version:4.2
1+
// swift-tools-version:5.0
22

33
import PackageDescription
44

@@ -17,10 +17,10 @@ let package = Package(
1717
],
1818
targets: [
1919
.target(name: "PrettyStackTrace", dependencies: []),
20-
.target(name: "pst-lite", dependencies: ["LiteSupport", "Utility", "Symbolic"]),
20+
.target(name: "pst-lite", dependencies: ["LiteSupport", "SPMUtility", "Symbolic"]),
2121
.target(
2222
name: "pst-file-check",
23-
dependencies: ["FileCheck", "Utility"]),
23+
dependencies: ["FileCheck", "SPMUtility"]),
2424

2525
]
2626
)

Sources/pst-file-check/main.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import Foundation
22
import Basic
3-
import Utility
3+
import SPMUtility
44
import FileCheck
55

66
func error(_ msg: String) -> Never {

Sources/pst-lite/main.swift

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ import Foundation
22
#if os(Linux)
33
import Glibc
44
#endif
5-
import ShellOut
65
import LiteSupport
76
import Symbolic
87

0 commit comments

Comments
 (0)