Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 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
5 changes: 4 additions & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,10 @@ let package = Package(
dependencies: [
.package(url: "https://github.com/apple/swift-collections.git", from: "1.1.0"),
.package(url: "https://github.com/apple/swift-log.git", from: "1.5.4"),
// NOTE: Compiling to wasm requires specific versions of swift-nio.
Comment thread
scottmarchant marked this conversation as resolved.
Outdated
// This older version is left as-is to avoid placing restrictions
// on other targets. But to compile for wasm, make sure you have
// a version of swift-nio with a passing build for the NIOCore module.
.package(url: "https://github.com/apple/swift-nio.git", from: "2.65.0"),
],
targets: [
Expand All @@ -24,7 +28,6 @@ let package = Package(
dependencies: [
.product(name: "Collections", package: "swift-collections"),
.product(name: "Logging", package: "swift-log"),
.product(name: "NIO", package: "swift-nio"),
Comment thread
scottmarchant marked this conversation as resolved.
.product(name: "NIOCore", package: "swift-nio"),
],
swiftSettings: swiftSettings
Expand Down
4 changes: 2 additions & 2 deletions Sources/SQLKit/Exports.swift
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
@_documentation(visibility: internal) @_exported import protocol NIO.EventLoop
@_documentation(visibility: internal) @_exported import class NIO.EventLoopFuture
Comment thread
scottmarchant marked this conversation as resolved.
@_documentation(visibility: internal) @_exported import protocol NIOCore.EventLoop
@_documentation(visibility: internal) @_exported import class NIOCore.EventLoopFuture
Comment thread
scottmarchant marked this conversation as resolved.
@_documentation(visibility: internal) @_exported import struct Logging.Logger