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
7 changes: 0 additions & 7 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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"),
Expand All @@ -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"),
Expand All @@ -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"),
Expand Down
1 change: 0 additions & 1 deletion Sources/Example/Example.swift
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
//
//===----------------------------------------------------------------------===//

import AsyncStreaming
import Crypto
import Foundation
import HTTPAPIs
Expand Down
1 change: 0 additions & 1 deletion Sources/NIOHTTPServer/NIOHTTPServer+HTTP1_1.swift
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@

import HTTPAPIs
import NIOCore
import NIOEmbedded
import NIOExtras
import NIOHTTP1
import NIOHTTPTypes
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ import NIOPosix
import ServiceLifecycle
import ServiceLifecycleTestKit
import Testing
import X509

@testable import NIOHTTPServer

Expand Down
7 changes: 0 additions & 7 deletions Tests/NIOHTTPServerTests/NIOHTTPServerEndToEndTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
Loading