fj-admin-bot/Package.swift

25 lines
No EOL
919 B
Swift

// swift-tools-version: 5.10
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(
name: "fj-admin",
dependencies: [
.package(url: "https://github.com/DDBKit/DDBKit", exact: "0.2.4"), // change this to latest ver,
.package(url: "https://github.com/swiftpackages/DotEnv.git", from: "3.0.0")
],
targets: [
// Targets are the basic building blocks of a package, defining a module or a test suite.
// Targets can depend on other targets in this package and products from dependencies.
.executableTarget(
name: "fj-admin",
dependencies: [
.product(name: "DDBKit", package: "DDBKit"),
.product(name: "DDBKitUtilities", package: "DDBKit"),
.product(name: "DDBKitFoundation", package: "DDBKit"),
.product(name: "DotEnv", package: "DotEnv"),
]
),
]
)