Skip to content

Commit a7acaf4

Browse files
committed
Try to fix usage in XCFramework
#4
1 parent 9d99a73 commit a7acaf4

File tree

3 files changed

+6
-8
lines changed

3 files changed

+6
-8
lines changed

.github/funding.yml

Lines changed: 0 additions & 2 deletions
This file was deleted.

Package.swift

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// swift-tools-version:5.2
1+
// swift-tools-version:5.6
22
import PackageDescription
33

44
let package = Package(
@@ -18,15 +18,15 @@ let package = Package(
1818
)
1919
],
2020
targets: [
21-
.target(
22-
name: "Internal"
23-
),
2421
.target(
2522
name: "ExceptionCatcher",
2623
dependencies: [
2724
"Internal"
2825
]
2926
),
27+
.target(
28+
name: "Internal"
29+
),
3030
.testTarget(
3131
name: "ExceptionCatcherTests",
3232
dependencies: [

Sources/ExceptionCatcher/ExceptionCatcher.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import Foundation
2-
import Internal
1+
@_implementationOnly import Foundation
2+
@_implementationOnly import Internal
33

44
public enum ExceptionCatcher {
55
/**

0 commit comments

Comments
 (0)