fj-admin-bot/Package.swift

23 lines
785 B
Swift
Raw Normal View History

2024-11-29 21:31:42 -05:00
// 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
],
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"),
]
),
]
)