Skip to content

Commit

Permalink
Use tabs in Package.swift
Browse files Browse the repository at this point in the history
  • Loading branch information
NickEntin committed Aug 28, 2024
1 parent 34dc487 commit a2ba600
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -26,23 +26,23 @@ let package = Package(
products: [
.library(
name: "Paralayout",
targets: ["Paralayout"]
targets: ["Paralayout"]
),
],
targets: [
.target(
name: "Paralayout",
dependencies: [],
path: "Paralayout",
swiftSettings: [
.enableExperimentalFeature("StrictConcurrency")
]
swiftSettings: [
.enableExperimentalFeature("StrictConcurrency")
]
),
.testTarget(
name: "ParalayoutTests",
dependencies: ["Paralayout"],
path: "ParalayoutTests"
),
name: "ParalayoutTests",
dependencies: ["Paralayout"],
path: "ParalayoutTests"
),
],
swiftLanguageVersions: [.v5]
)

0 comments on commit a2ba600

Please sign in to comment.