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(
13
13
. library( name: " FluentPostgresDriver " , targets: [ " FluentPostgresDriver " ] ) ,
14
14
] ,
15
15
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 " ) ,
19
19
] ,
20
20
targets: [
21
21
. target(
@@ -42,6 +42,4 @@ let package = Package(
42
42
var swiftSettings : [ SwiftSetting ] { [
43
43
. enableUpcomingFeature( " ConciseMagicFile " ) ,
44
44
. enableUpcomingFeature( " ForwardTrailingClosures " ) ,
45
- . enableUpcomingFeature( " DisableOutwardActorInference " ) ,
46
- . enableExperimentalFeature( " StrictConcurrency=complete " ) ,
47
45
] }
Original file line number Diff line number Diff line change @@ -13,9 +13,9 @@ let package = Package(
13
13
. library( name: " FluentPostgresDriver " , targets: [ " FluentPostgresDriver " ] ) ,
14
14
] ,
15
15
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 " ) ,
19
19
] ,
20
20
targets: [
21
21
. target(
Original file line number Diff line number Diff line change @@ -99,7 +99,7 @@ fileprivate struct FakeSendable<T>: @unchecked Sendable { let wrappedValue: T }
99
99
100
100
/// We'd like to just default the context parameters of the "actual" method. Unfortunately, there are a few
101
101
/// 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
103
103
/// obvious way to disambiguate which to call. Because the context parameters are generic, if they are defaulted,
104
104
/// the compiler resolves the ambiguity in favor of the deprecated method (which has no generic parameters).
105
105
/// 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