Skip to content

Commit

Permalink
rename swift-timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
swhitty committed Sep 8, 2024
1 parent cfcbd1a commit 20c754d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -3,25 +3,25 @@
import PackageDescription

let package = Package(
name: "TaskTimeout",
name: "Timeout",
platforms: [
.macOS(.v10_15), .iOS(.v13), .tvOS(.v13), .watchOS(.v6)
],
products: [
.library(
name: "TaskTimeout",
targets: ["TaskTimeout"]
name: "Timeout",
targets: ["Timeout"]
)
],
targets: [
.target(
name: "TaskTimeout",
name: "Timeout",
path: "Sources",
swiftSettings: .upcomingFeatures
),
.testTarget(
name: "TaskTimeoutTests",
dependencies: ["TaskTimeout"],
name: "TimeoutTests",
dependencies: ["Timeout"],
path: "Tests",
swiftSettings: .upcomingFeatures
)
Expand Down
2 changes: 1 addition & 1 deletion Tests/TaskTimeoutTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
// SOFTWARE.
//

import TaskTimeout
import Timeout
import XCTest

final class TaskTimeoutTests: XCTestCase {
Expand Down

0 comments on commit 20c754d

Please sign in to comment.