-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPackage.swift
28 lines (26 loc) · 1.08 KB
/
Package.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// swift-tools-version: 5.9
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(
name: "Swiftsonver",
platforms: [
.macOS(.v13)
],
dependencies: [
.package(url: "https://github.com/vapor/vapor.git", from: "4.89.0"),
.package(url: "https://github.com/vapor/jwt.git", .upToNextMajor(from: "4.2.2")),
.package(url: "https://github.com/jpsim/Yams.git", .upToNextMajor(from: "5.0.6")),
.package(url: "https://github.com/vapor/fluent.git", from: "4.0.0"),
.package(url: "https://github.com/kylef/Commander.git", from: "0.9.1")
],
targets: [
.executableTarget(
name: "Swiftsonver",
dependencies: [
.product(name: "Vapor", package: "vapor"),
.product(name: "JWT", package: "jwt"),
.product(name: "Yams", package: "Yams"),
.product(name: "Fluent", package: "fluent"),
.product(name: "Commander", package: "Commander")
])
])