File tree Expand file tree Collapse file tree 3 files changed +12
-10
lines changed Expand file tree Collapse file tree 3 files changed +12
-10
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ Hummingbird Core is the HTTP server for the Hummingbird framework.
99
1010## Important Libraries
1111This version of Hummingbird requires
12- * [ 5.10] ( https://swift.org )
12+ * [ Swift 5.10] ( https://swift.org )
1313* [ SwiftNIO 2.x] ( https://github.com/apple/swift-nio/ )
1414
1515## Test URLs
Original file line number Diff line number Diff line change 11# ================================
22# Build image
33# ================================
4- FROM swift:6.1 AS build
4+ FROM swift:5.10 AS build
55WORKDIR /build
66
77# Copy entire repo into container
@@ -15,7 +15,7 @@ RUN swift build \
1515# ================================
1616# Run image
1717# ================================
18- FROM swift:6.1 -slim
18+ FROM swift:5.10 -slim
1919WORKDIR /run
2020
2121# Copy build artifacts
Original file line number Diff line number Diff line change 1- // swift-tools-version:6.1
1+ // swift-tools-version:5.10
22
33import PackageDescription
44
55let package = Package (
66 name: " vapor-swifql-ikiga " ,
77 platforms: [
8- . macOS( . v12)
8+ . macOS( . v12)
99 ] ,
1010 products: [
1111 . executable( name: " app " , targets: [ " App " ] )
@@ -39,8 +39,10 @@ let package = Package(
3939 ]
4040)
4141
42- var swiftSettings : [ SwiftSetting ] { [
43- . enableUpcomingFeature( " DisableOutwardActorInference " ) ,
44- . enableExperimentalFeature( " StrictConcurrency " ) ,
45- . unsafeFlags( [ " -parse-as-library " ] ) ,
46- ] }
42+ var swiftSettings : [ SwiftSetting ] {
43+ [
44+ . enableUpcomingFeature( " DisableOutwardActorInference " ) ,
45+ . enableExperimentalFeature( " StrictConcurrency " ) ,
46+ . unsafeFlags( [ " -parse-as-library " ] ) ,
47+ ]
48+ }
You can’t perform that action at this time.
0 commit comments