diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 9e6713b7..ff277424 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -15,6 +15,7 @@ jobs: secrets: inherit with: with_android: true + with_wasm: true pure-fluent-integration-test: if: ${{ !(github.event.pull_request.draft || false) }} diff --git a/Package.swift b/Package.swift index 0dadd40a..0812b450 100644 --- a/Package.swift +++ b/Package.swift @@ -16,7 +16,7 @@ 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"), - .package(url: "https://github.com/apple/swift-nio.git", from: "2.65.0"), + .package(url: "https://github.com/apple/swift-nio.git", from: "2.84.0"), ], targets: [ .target( @@ -24,7 +24,6 @@ let package = Package( dependencies: [ .product(name: "Collections", package: "swift-collections"), .product(name: "Logging", package: "swift-log"), - .product(name: "NIO", package: "swift-nio"), .product(name: "NIOCore", package: "swift-nio"), ], swiftSettings: swiftSettings diff --git a/Sources/SQLKit/Exports.swift b/Sources/SQLKit/Exports.swift index 3fbde01f..370dd880 100644 --- a/Sources/SQLKit/Exports.swift +++ b/Sources/SQLKit/Exports.swift @@ -1,3 +1,3 @@ -@_documentation(visibility: internal) @_exported import protocol NIO.EventLoop -@_documentation(visibility: internal) @_exported import class NIO.EventLoopFuture +@_documentation(visibility: internal) @_exported import protocol NIOCore.EventLoop +@_documentation(visibility: internal) @_exported import class NIOCore.EventLoopFuture @_documentation(visibility: internal) @_exported import struct Logging.Logger