Skip to content

Commit e27a1d3

Browse files
committed
Remove vapor-sqiftql changes
1 parent 299e025 commit e27a1d3

File tree

3 files changed

+12
-10
lines changed

3 files changed

+12
-10
lines changed

frameworks/Swift/hummingbird-core/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Hummingbird Core is the HTTP server for the Hummingbird framework.
99

1010
## Important Libraries
1111
This 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

frameworks/Swift/vapor/vapor-swifql.dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# ================================
22
# Build image
33
# ================================
4-
FROM swift:6.1 AS build
4+
FROM swift:5.10 AS build
55
WORKDIR /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
1919
WORKDIR /run
2020

2121
# Copy build artifacts

frameworks/Swift/vapor/vapor-swifql/Package.swift

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
// swift-tools-version:6.1
1+
// swift-tools-version:5.10
22

33
import PackageDescription
44

55
let 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+
}

0 commit comments

Comments
 (0)