diff --git a/Package.swift b/Package.swift index b8372c1..ddfb25c 100644 --- a/Package.swift +++ b/Package.swift @@ -41,10 +41,6 @@ let package = Package( ], dependencies: [ .package(url: "https://github.com/apple/swift-http-api-proposal.git", branch: "main"), - .package( - url: "https://github.com/FranzBusch/swift-collections.git", - branch: "fb-async" - ), .package(url: "https://github.com/apple/swift-http-types.git", from: "1.0.0"), .package(url: "https://github.com/apple/swift-distributed-tracing.git", from: "1.0.0"), .package(url: "https://github.com/apple/swift-certificates.git", from: "1.16.0"), @@ -60,7 +56,6 @@ let package = Package( .executableTarget( name: "Example", dependencies: [ - .product(name: "DequeModule", package: "swift-collections"), .product(name: "HTTPTypes", package: "swift-http-types"), .product(name: "Tracing", package: "swift-distributed-tracing"), .product(name: "Instrumentation", package: "swift-distributed-tracing"), @@ -74,8 +69,6 @@ let package = Package( name: "NIOHTTPServer", dependencies: [ .product(name: "AsyncStreaming", package: "swift-http-api-proposal"), - .product(name: "DequeModule", package: "swift-collections"), - .product(name: "BasicContainers", package: "swift-collections"), .product(name: "X509", package: "swift-certificates"), .product(name: "HTTPTypes", package: "swift-http-types"), .product(name: "NIOCore", package: "swift-nio"), diff --git a/Sources/Example/Example.swift b/Sources/Example/Example.swift index 00e4a95..f057092 100644 --- a/Sources/Example/Example.swift +++ b/Sources/Example/Example.swift @@ -12,7 +12,6 @@ // //===----------------------------------------------------------------------===// -import AsyncStreaming import Crypto import Foundation import HTTPAPIs diff --git a/Sources/NIOHTTPServer/NIOHTTPServer+HTTP1_1.swift b/Sources/NIOHTTPServer/NIOHTTPServer+HTTP1_1.swift index 6de4016..d52cdc6 100644 --- a/Sources/NIOHTTPServer/NIOHTTPServer+HTTP1_1.swift +++ b/Sources/NIOHTTPServer/NIOHTTPServer+HTTP1_1.swift @@ -14,7 +14,6 @@ import HTTPAPIs import NIOCore -import NIOEmbedded import NIOExtras import NIOHTTP1 import NIOHTTPTypes diff --git a/Tests/NIOHTTPServerTests/NIOHTTPServer+ServiceLifecycleTests.swift b/Tests/NIOHTTPServerTests/NIOHTTPServer+ServiceLifecycleTests.swift index 6de8972..25504ea 100644 --- a/Tests/NIOHTTPServerTests/NIOHTTPServer+ServiceLifecycleTests.swift +++ b/Tests/NIOHTTPServerTests/NIOHTTPServer+ServiceLifecycleTests.swift @@ -21,7 +21,6 @@ import NIOPosix import ServiceLifecycle import ServiceLifecycleTestKit import Testing -import X509 @testable import NIOHTTPServer diff --git a/Tests/NIOHTTPServerTests/NIOHTTPServerEndToEndTests.swift b/Tests/NIOHTTPServerTests/NIOHTTPServerEndToEndTests.swift index 4ccfc6b..06c3859 100644 --- a/Tests/NIOHTTPServerTests/NIOHTTPServerEndToEndTests.swift +++ b/Tests/NIOHTTPServerTests/NIOHTTPServerEndToEndTests.swift @@ -14,15 +14,8 @@ import HTTPAPIs import Logging -import NIOCore -import NIOEmbedded -import NIOHTTP1 -import NIOHTTP2 -import NIOHTTPTypes -import NIOHTTPTypesHTTP2 import NIOSSL import Testing -import X509 @testable import NIOHTTPServer