Skip to content

Commit 69f2798

Browse files
committed
Move _Unicode into _StringProcessing
git ignore stuff
1 parent f63c645 commit 69f2798

17 files changed

+3
-18
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
.DS_Store
2+
13
# Xcode
24
#
35
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore

Package.swift

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,6 @@ let package = Package(
1616
.library(
1717
name: "_MatchingEngine",
1818
targets: ["_MatchingEngine"]),
19-
.library(
20-
name: "_Unicode",
21-
targets: ["_Unicode"]),
2219
.executable(
2320
name: "VariadicsGenerator",
2421
targets: ["VariadicsGenerator"])
@@ -31,7 +28,7 @@ let package = Package(
3128
// Targets can depend on other targets in this package, and on products in packages which this package depends on.
3229
.target(
3330
name: "_MatchingEngine",
34-
dependencies: [/*"_Unicode"*/],
31+
dependencies: [],
3532
swiftSettings: [
3633
.unsafeFlags(["-enable-library-evolution"])
3734
]),
@@ -44,18 +41,12 @@ let package = Package(
4441
swiftSettings: [
4542
.unsafeFlags(["-enable-library-evolution"])
4643
]),
47-
.target(
48-
name: "_Unicode",
49-
dependencies: []),
5044
.testTarget(
5145
name: "RegexTests",
5246
dependencies: ["_StringProcessing"]),
5347
.target(
5448
name: "Prototypes",
5549
dependencies: ["_MatchingEngine"]),
56-
.testTarget(
57-
name: "UnicodeTests",
58-
dependencies: ["_Unicode"]),
5950

6051
// MARK: Scripts
6152
.executableTarget(
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)