File tree Expand file tree Collapse file tree 3 files changed +7
-9
lines changed
Sources/FluentPostgresDriver Expand file tree Collapse file tree 3 files changed +7
-9
lines changed Original file line number Diff line number Diff line change @@ -13,9 +13,9 @@ let package = Package(
1313 . library( name: " FluentPostgresDriver " , targets: [ " FluentPostgresDriver " ] ) ,
1414 ] ,
1515 dependencies: [
16- . package ( url: " https://github.com/vapor/async-kit.git " , from: " 1.17 .0 " ) ,
17- . package ( url: " https://github.com/vapor/fluent-kit.git " , from: " 1.43.0 " ) ,
18- . package ( url: " https://github.com/vapor/postgres-kit.git " , from: " 2.11 .4 " ) ,
16+ . package ( url: " https://github.com/vapor/async-kit.git " , from: " 1.19 .0 " ) ,
17+ . package ( url: " https://github.com/vapor/fluent-kit.git " , from: " 1.48.4 " ) ,
18+ . package ( url: " https://github.com/vapor/postgres-kit.git " , from: " 2.13 .4 " ) ,
1919 ] ,
2020 targets: [
2121 . target(
@@ -42,6 +42,4 @@ let package = Package(
4242var swiftSettings : [ SwiftSetting ] { [
4343 . enableUpcomingFeature( " ConciseMagicFile " ) ,
4444 . enableUpcomingFeature( " ForwardTrailingClosures " ) ,
45- . enableUpcomingFeature( " DisableOutwardActorInference " ) ,
46- . enableExperimentalFeature( " StrictConcurrency=complete " ) ,
4745] }
Original file line number Diff line number Diff line change @@ -13,9 +13,9 @@ let package = Package(
1313 . library( name: " FluentPostgresDriver " , targets: [ " FluentPostgresDriver " ] ) ,
1414 ] ,
1515 dependencies: [
16- . package ( url: " https://github.com/vapor/async-kit.git " , from: " 1.17 .0 " ) ,
17- . package ( url: " https://github.com/vapor/fluent-kit.git " , from: " 1.43.0 " ) ,
18- . package ( url: " https://github.com/vapor/postgres-kit.git " , from: " 2.11 .4 " ) ,
16+ . package ( url: " https://github.com/vapor/async-kit.git " , from: " 1.19 .0 " ) ,
17+ . package ( url: " https://github.com/vapor/fluent-kit.git " , from: " 1.48.4 " ) ,
18+ . package ( url: " https://github.com/vapor/postgres-kit.git " , from: " 2.13 .4 " ) ,
1919 ] ,
2020 targets: [
2121 . target(
Original file line number Diff line number Diff line change @@ -99,7 +99,7 @@ fileprivate struct FakeSendable<T>: @unchecked Sendable { let wrappedValue: T }
9999
100100/// We'd like to just default the context parameters of the "actual" method. Unfortunately, there are a few
101101/// cases involving the UNIX domain socket initalizer where usage can resolve to either the new
102- /// `` SQLPostgresConfiguration`` -based method or the deprecated `` PostgresConfiguration` `-based method, with no
102+ /// `SQLPostgresConfiguration`-based method or the deprecated `PostgresConfiguration`-based method, with no
103103/// obvious way to disambiguate which to call. Because the context parameters are generic, if they are defaulted,
104104/// the compiler resolves the ambiguity in favor of the deprecated method (which has no generic parameters).
105105/// However, by adding the non-defaulted-parameter variant which takes neither context, we've provided a version
You can’t perform that action at this time.
0 commit comments