Skip to content

Commit

Permalink
Remove no longer needed @preconcurrency attribute (#96)
Browse files Browse the repository at this point in the history
* No longer need the @preconcurrency import

* Update Package.swift

* Update [email protected]
  • Loading branch information
gwynne authored May 19, 2024
1 parent 60cf4b6 commit 3c9558f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ let package = Package(
.library(name: "MultipartKit", targets: ["MultipartKit"]),
],
dependencies: [
.package(url: "https://github.com/apple/swift-nio.git", from: "2.61.1"),
.package(url: "https://github.com/apple/swift-collections.git", from: "1.0.5"),
.package(url: "https://github.com/apple/swift-nio.git", from: "2.65.0"),
.package(url: "https://github.com/apple/swift-collections.git", from: "1.1.0"),
],
targets: [
.target(
Expand Down
4 changes: 2 additions & 2 deletions [email protected]
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ let package = Package(
.library(name: "MultipartKit", targets: ["MultipartKit"]),
],
dependencies: [
.package(url: "https://github.com/apple/swift-nio.git", from: "2.61.1"),
.package(url: "https://github.com/apple/swift-collections.git", from: "1.0.5"),
.package(url: "https://github.com/apple/swift-nio.git", from: "2.65.0"),
.package(url: "https://github.com/apple/swift-collections.git", from: "1.1.0"),
],
targets: [
.target(
Expand Down
2 changes: 1 addition & 1 deletion Sources/MultipartKit/MultipartFormData.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@preconcurrency import Collections
import Collections

enum MultipartFormData: Equatable, Sendable {
typealias Keyed = OrderedDictionary<String, MultipartFormData>
Expand Down

0 comments on commit 3c9558f

Please sign in to comment.