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
2 changes: 1 addition & 1 deletion Sources/Basics/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -79,11 +79,11 @@ add_library(Basics
Vendor/Triple+Platforms.swift)
target_link_libraries(Basics PUBLIC
_AsyncFileSystem
SwiftCollections::DequeModule
SwiftCollections::OrderedCollections
TSCBasic
TSCUtility)
target_link_libraries(Basics PRIVATE
SwiftCollections::DequeModule
SPMSQLite3
TSCclibc)

Expand Down
2 changes: 1 addition & 1 deletion Sources/Basics/Concurrency/TokenBucket.swift
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
//===----------------------------------------------------------------------===//

import _Concurrency
import DequeModule
private import DequeModule

/// Type modeled after a "token bucket" pattern, which is similar to a semaphore, but is built with
/// Swift Concurrency primitives.
Expand Down
2 changes: 1 addition & 1 deletion Sources/Basics/Graph/DirectedGraph.swift
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
//
//===----------------------------------------------------------------------===//

import struct DequeModule.Deque
private import DequeModule

/// Directed graph that stores edges in [adjacency lists](https://en.wikipedia.org/wiki/Adjacency_list).
@_spi(DontAdoptOutsideOfSwiftPMExposedForBenchmarksAndTestsOnly)
Expand Down
2 changes: 1 addition & 1 deletion Sources/Basics/Graph/UndirectedGraph.swift
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
//
//===----------------------------------------------------------------------===//

import struct DequeModule.Deque
private import DequeModule

/// Undirected graph that stores edges in an [adjacency matrix](https://en.wikipedia.org/wiki/Adjacency_matrix).
@_spi(DontAdoptOutsideOfSwiftPMExposedForBenchmarksAndTestsOnly)
Expand Down
1 change: 0 additions & 1 deletion Sources/Basics/HTTPClient/HTTPClient.swift
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
//===----------------------------------------------------------------------===//

import _Concurrency
import DequeModule
import Foundation

/// `async`-friendly wrapper for HTTP clients. It allows a specific client implementation (either Foundation or
Expand Down