From df97271987d9675b4cc0ca60324977e301d87783 Mon Sep 17 00:00:00 2001 From: Christoph Hagen Date: Tue, 18 Oct 2022 11:39:09 +0200 Subject: [PATCH] Update package version --- Package.swift | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Package.swift b/Package.swift index 92806f9..77c2016 100644 --- a/Package.swift +++ b/Package.swift @@ -1,4 +1,4 @@ -// swift-tools-version:5.5 +// swift-tools-version:5.6 import PackageDescription let package = Package( @@ -7,21 +7,21 @@ let package = Package( .macOS(.v12) ], dependencies: [ - .package(name: "vapor", url: "https://github.com/vapor/vapor.git", from: "4.0.0"), - .package(name: "fluent", url: "https://github.com/vapor/fluent.git", from: "4.0.0"), - .package(name: "fluent-sqlite-driver", url: "https://github.com/vapor/fluent-sqlite.git", from: "4.0.0"), + .package(url: "https://github.com/vapor/vapor.git", from: "4.0.0"), + .package(url: "https://github.com/vapor/fluent.git", from: "4.0.0"), + .package(url: "https://github.com/vapor/fluent-sqlite.git", from: "4.0.0"), // Alternatives: // https://github.com/onevcat/Hedwig // https://github.com/Joannis/SMTPKitten // https://github.com/Joannis/VaporSMTPKit <- Uses SMTPKitten - .package(name: "Swift-SMTP", url: "https://github.com/Kitura/Swift-SMTP", from: "5.1.0"), + .package(url: "https://github.com/Kitura/Swift-SMTP", from: "5.1.0"), ], targets: [ .target( name: "App", dependencies: [ .product(name: "Fluent", package: "fluent"), - .product(name: "FluentSQLiteDriver", package: "fluent-sqlite-driver"), + .product(name: "FluentSQLiteDriver", package: "fluent-sqlite"), .product(name: "Vapor", package: "vapor"), .product(name: "SwiftSMTP", package: "Swift-SMTP"), ],