-
Notifications
You must be signed in to change notification settings - Fork 3
/
Package.swift
31 lines (29 loc) · 1.09 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
29
30
31
// swift-tools-version:5.9
import PackageDescription
let package = Package(
name: "SwiftDEBot",
platforms: [
.macOS(.v13),
],
dependencies: [
.package(url: "https://github.com/MahdiBM/DiscordBM", exact: "1.0.0-beta.49"),
.package(url: "https://github.com/swift-server/async-http-client", from: "1.15.0"),
.package(url: "https://github.com/apple/swift-log", from: "1.5.2"),
.package(url: "https://github.com/apple/swift-algorithms.git", from: "1.0.0"),
.package(url: "https://github.com/helje5/Shell.git", from: "0.1.4"),
.package(url: "https://github.com/AlwaysRightInstitute/cows.git", from: "1.0.0"),
],
targets: [
.executableTarget(
name: "SwiftDEBot",
dependencies: [
"DiscordBM",
.product(name: "AsyncHTTPClient", package: "async-http-client"),
.product(name: "Logging", package: "swift-log"),
.product(name: "Algorithms", package: "swift-algorithms"),
"Shell",
"cows",
]
),
]
)