Files
Nahi/Package.swift
Andrew Glaze a5247d6f5d init
2025-08-19 22:57:10 -04:00

24 lines
841 B
Swift

// swift-tools-version: 6.2
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(
name: "nahi",
dependencies: [
.package(url: "https://github.com/DiscordBM/DiscordBM.git", from: "1.13.2"),
.package(url: "https://github.com/guitaripod/GeminiKit", from: "1.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: "nahi",
dependencies: [
.product(name: "DiscordBM", package: "DiscordBM"),
.product(name: "GeminiKit", package: "GeminiKit")
]
),
]
)