Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ let package = Package(
.product(name: "Tracing", package: "swift-distributed-tracing"),
.product(name: "Instrumentation", package: "swift-distributed-tracing"),
.product(name: "Logging", package: "swift-log"),
.product(name: "HTTPServer", package: "swift-http-api-proposal"),
.product(name: "HTTPAPIs", package: "swift-http-api-proposal"),
"NIOHTTPServer",
],
swiftSettings: extraSettings
Expand Down Expand Up @@ -93,7 +93,7 @@ let package = Package(
condition: .when(traits: ["Configuration"])
),
.product(name: "NIOExtras", package: "swift-nio-extras"),
.product(name: "HTTPServer", package: "swift-http-api-proposal"),
.product(name: "HTTPAPIs", package: "swift-http-api-proposal"),
],
swiftSettings: extraSettings
),
Expand Down
2 changes: 1 addition & 1 deletion Sources/Example/Example.swift
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
import AsyncStreaming
import Crypto
import Foundation
import HTTPServer
import HTTPAPIs
import HTTPTypes
import Instrumentation
import Logging
Expand Down
2 changes: 1 addition & 1 deletion Sources/NIOHTTPServer/NIOHTTPServer+HTTP1_1.swift
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
//
//===----------------------------------------------------------------------===//

import HTTPServer
import HTTPAPIs
import NIOCore
import NIOEmbedded
import NIOExtras
Expand Down
2 changes: 1 addition & 1 deletion Sources/NIOHTTPServer/NIOHTTPServer+SecureUpgrade.swift
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
//
//===----------------------------------------------------------------------===//

import HTTPServer
import HTTPAPIs
import Logging
import NIOCore
import NIOEmbedded
Expand Down
2 changes: 1 addition & 1 deletion Sources/NIOHTTPServer/NIOHTTPServer.swift
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
//
//===----------------------------------------------------------------------===//

public import HTTPServer
public import HTTPAPIs
import HTTPTypes
public import Logging
import NIOCertificateReloading
Expand Down
2 changes: 1 addition & 1 deletion Tests/NIOHTTPServerTests/HTTPResponseSenderTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
//
//===----------------------------------------------------------------------===//

import HTTPServer
import HTTPAPIs
import HTTPTypes
import NIOCore
import NIOHTTPTypes
Expand Down
1 change: 0 additions & 1 deletion Tests/NIOHTTPServerTests/HTTPServerTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
//
//===----------------------------------------------------------------------===//

import HTTPServer
import HTTPTypes
import Logging
import NIOHTTPServer
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
//===----------------------------------------------------------------------===//

import AsyncStreaming
import HTTPServer
import HTTPTypes
import Logging
import NIOCore
Expand Down
3 changes: 1 addition & 2 deletions Tests/NIOHTTPServerTests/NIOHTTPServerEndToEndTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,7 @@
//
//===----------------------------------------------------------------------===//

import HTTPServer
import HTTPTypes
import HTTPAPIs
import Logging
import NIOCore
import NIOEmbedded
Expand Down
2 changes: 1 addition & 1 deletion Tests/NIOHTTPServerTests/NIOHTTPServerTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
//===----------------------------------------------------------------------===//

import AsyncStreaming
import HTTPServer
import HTTPAPIs
import HTTPTypes
import Logging
import NIOCore
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import NIOCore
import NIOEmbedded
import NIOHTTPTypes

@testable import HTTPServer
@testable import HTTPAPIs
@testable import NIOHTTPServer

@available(macOS 26.2, iOS 26.2, watchOS 26.2, tvOS 26.2, visionOS 26.2, *)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import NIOCore
import NIOEmbedded
import NIOHTTPTypes

@testable import HTTPServer
@testable import HTTPAPIs
@testable import NIOHTTPServer

@available(macOS 26.2, iOS 26.2, watchOS 26.2, tvOS 26.2, visionOS 26.2, *)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
//
//===----------------------------------------------------------------------===//

import HTTPServer
import HTTPAPIs
import Logging
import NIOCore
import NIOEmbedded
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
//
//===----------------------------------------------------------------------===//

import HTTPServer
import HTTPAPIs
import Logging
import NIOCore
import NIOEmbedded
Expand Down
Loading