|
1 | | -// swift-tools-version:5.2 |
2 | | -// The swift-tools-version declares the minimum version of Swift required to build this package. |
| 1 | +// swift-tools-version:6.2.1 |
| 2 | +// The swift-tools-version declares the minimum version of Swift required to build this package |
3 | 3 |
|
4 | 4 | import PackageDescription |
5 | 5 |
|
6 | 6 | let package = Package( |
7 | 7 | name: "Smtp", |
8 | 8 | platforms: [ |
9 | | - .macOS(.v10_15) |
| 9 | + .macOS(.v10_15) |
10 | 10 | ], |
11 | 11 | products: [ |
12 | 12 | // Products define the executables and libraries produced by a package, and make them visible to other packages. |
13 | 13 | .library(name: "Smtp", targets: ["Smtp"]) |
14 | 14 | ], |
15 | 15 | dependencies: [ |
16 | | - // 💧 A server-side Swift web framework. |
17 | | - .package(url: "https://github.com/vapor/vapor.git", .upToNextMajor(from: "4.0.1")), |
18 | | - |
19 | | - // Event-driven network application framework for high performance protocol servers & clients, non-blocking. |
20 | | - .package(url: "https://github.com/apple/swift-nio.git", .upToNextMajor(from: "2.16.0")), |
21 | | - |
| 16 | + // 💧 A server-side Swift web framework |
| 17 | + .package(url: "https://github.com/vapor/vapor.git", .upToNextMajor(from: "4.121.1")), |
| 18 | + |
| 19 | + // Event-driven network application framework for high performance protocol servers & clients, non-blocking |
| 20 | + .package(url: "https://github.com/apple/swift-nio.git", .upToNextMajor(from: "2.93.0")), |
| 21 | + |
22 | 22 | // Bindings to OpenSSL-compatible libraries for TLS support in SwiftNIO |
23 | | - .package(url: "https://github.com/apple/swift-nio-ssl.git", .upToNextMajor(from: "2.7.1")) |
| 23 | + .package(url: "https://github.com/apple/swift-nio-ssl.git", .upToNextMajor(from: "2.36.0")) |
24 | 24 | ], |
25 | 25 | targets: [ |
26 | 26 | .target(name: "Smtp", dependencies: [ |
|
0 commit comments