diff --git a/Package.swift b/Package.swift index 7ac4444..8572e02 100644 --- a/Package.swift +++ b/Package.swift @@ -35,11 +35,11 @@ let package = Package( publicHeadersPath: "include" ), .target( - name: "ExceptionCatcher", + name: "XCDocsExceptionCatcher", dependencies: [ "ExceptionCatcherObjC", ], - path: "Sources/ExceptionCatcher", + path: "Sources/XCDocsExceptionCatcher", swiftSettings: [ .enableUpcomingFeature("StrictConcurrency"), ] @@ -47,7 +47,7 @@ let package = Package( .target( name: "XCDocsBridge", dependencies: [ - "ExceptionCatcher", + "XCDocsExceptionCatcher", ], swiftSettings: [ .enableUpcomingFeature("StrictConcurrency"), @@ -104,7 +104,7 @@ let package = Package( name: "XCDocsTests", dependencies: [ "TestSupport", - "ExceptionCatcher", + "XCDocsExceptionCatcher", "ExceptionCatcherObjC", "XCDocs", "XCDocsBridge", diff --git a/Sources/XCDocsBridge/MediaAnalysisServices/MADServiceObject.swift b/Sources/XCDocsBridge/MediaAnalysisServices/MADServiceObject.swift index 360087e..473e838 100644 --- a/Sources/XCDocsBridge/MediaAnalysisServices/MADServiceObject.swift +++ b/Sources/XCDocsBridge/MediaAnalysisServices/MADServiceObject.swift @@ -1,4 +1,4 @@ -import ExceptionCatcher +import XCDocsExceptionCatcher import Foundation package final class MADServiceObject: PrivateObject { diff --git a/Sources/ExceptionCatcher/ObjCExceptionCatcher.swift b/Sources/XCDocsExceptionCatcher/ObjCExceptionCatcher.swift similarity index 100% rename from Sources/ExceptionCatcher/ObjCExceptionCatcher.swift rename to Sources/XCDocsExceptionCatcher/ObjCExceptionCatcher.swift diff --git a/Tests/XCDocsTests/ExceptionCaptureTests.swift b/Tests/XCDocsTests/ExceptionCaptureTests.swift index cba3417..758c445 100644 --- a/Tests/XCDocsTests/ExceptionCaptureTests.swift +++ b/Tests/XCDocsTests/ExceptionCaptureTests.swift @@ -1,4 +1,4 @@ -import ExceptionCatcher +import XCDocsExceptionCatcher import Foundation import Testing