Skip to content

Commit 3c9558f

Browse files
authored
Remove no longer needed @preconcurrency attribute (#96)
* No longer need the @preconcurrency import * Update Package.swift * Update [email protected]
1 parent 60cf4b6 commit 3c9558f

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

Package.swift

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ let package = Package(
1313
.library(name: "MultipartKit", targets: ["MultipartKit"]),
1414
],
1515
dependencies: [
16-
.package(url: "https://github.com/apple/swift-nio.git", from: "2.61.1"),
17-
.package(url: "https://github.com/apple/swift-collections.git", from: "1.0.5"),
16+
.package(url: "https://github.com/apple/swift-nio.git", from: "2.65.0"),
17+
.package(url: "https://github.com/apple/swift-collections.git", from: "1.1.0"),
1818
],
1919
targets: [
2020
.target(

[email protected]

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ let package = Package(
1313
.library(name: "MultipartKit", targets: ["MultipartKit"]),
1414
],
1515
dependencies: [
16-
.package(url: "https://github.com/apple/swift-nio.git", from: "2.61.1"),
17-
.package(url: "https://github.com/apple/swift-collections.git", from: "1.0.5"),
16+
.package(url: "https://github.com/apple/swift-nio.git", from: "2.65.0"),
17+
.package(url: "https://github.com/apple/swift-collections.git", from: "1.1.0"),
1818
],
1919
targets: [
2020
.target(

Sources/MultipartKit/MultipartFormData.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
@preconcurrency import Collections
1+
import Collections
22

33
enum MultipartFormData: Equatable, Sendable {
44
typealias Keyed = OrderedDictionary<String, MultipartFormData>

0 commit comments

Comments
 (0)