1
- // swift-tools-version:5.5
1
+ // swift-tools-version:5.7
2
2
import PackageDescription
3
3
4
4
let package = Package (
@@ -10,13 +10,34 @@ let package = Package(
10
10
. library( name: " AppApi " , targets: [ " AppApi " ] ) ,
11
11
] ,
12
12
dependencies: [
13
- . package ( url: " https://github.com/vapor/vapor " , from: " 4.54.0 " ) ,
14
- . package ( url: " https://github.com/vapor/fluent " , from: " 4.4.0 " ) ,
15
- . package ( url: " https://github.com/vapor/fluent-sqlite-driver " , from: " 4.1.0 " ) ,
16
- . package ( url: " https://github.com/binarybirds/liquid " , from: " 1.3.0 " ) ,
17
- . package ( url: " https://github.com/binarybirds/liquid-local-driver " , from: " 1.3.0 " ) ,
18
- . package ( url: " https://github.com/binarybirds/swift-html " , from: " 1.2.0 " ) ,
19
- . package ( url: " https://github.com/binarybirds/spec " , from: " 1.2.0 " ) ,
13
+ . package (
14
+ url: " https://github.com/vapor/vapor " ,
15
+ from: " 4.70.0 "
16
+ ) ,
17
+ . package (
18
+ url: " https://github.com/vapor/fluent " ,
19
+ from: " 4.4.0 "
20
+ ) ,
21
+ . package (
22
+ url: " https://github.com/vapor/fluent-sqlite-driver " ,
23
+ from: " 4.1.0 "
24
+ ) ,
25
+ . package (
26
+ url: " https://github.com/binarybirds/liquid " ,
27
+ from: " 1.3.0 "
28
+ ) ,
29
+ . package (
30
+ url: " https://github.com/binarybirds/liquid-local-driver " ,
31
+ from: " 1.3.0 "
32
+ ) ,
33
+ . package (
34
+ url: " https://github.com/binarybirds/swift-html " ,
35
+ from: " 1.7.0 "
36
+ ) ,
37
+ . package (
38
+ url: " https://github.com/binarybirds/spec " ,
39
+ from: " 1.2.0 "
40
+ ) ,
20
41
] ,
21
42
targets: [
22
43
. target( name: " AppApi " , dependencies: [ ] ) ,
@@ -25,10 +46,9 @@ let package = Package(
25
46
. product( name: " Fluent " , package : " fluent " ) ,
26
47
. product( name: " FluentSQLiteDriver " , package : " fluent-sqlite-driver " ) ,
27
48
. product( name: " Liquid " , package : " liquid " ) ,
28
- . product( name: " LiquidLocalDriver " , package : " liquid-local-driver " ) ,
49
+ . product( name: " LiquidLocalDriver " , package : " liquid-local-driver " ) ,
29
50
. product( name: " SwiftHtml " , package : " swift-html " ) ,
30
51
. product( name: " SwiftSvg " , package : " swift-html " ) ,
31
-
32
52
. target( name: " AppApi " )
33
53
] ) ,
34
54
. executableTarget( name: " Run " , dependencies: [ " App " ] ) ,
@@ -39,6 +59,6 @@ let package = Package(
39
59
] ) ,
40
60
. testTarget( name: " AppApiTests " , dependencies: [
41
61
. target( name: " AppApi " ) ,
42
- ] )
62
+ ] ) ,
43
63
]
44
64
)
0 commit comments