-
Notifications
You must be signed in to change notification settings - Fork 2
/
Package.swift
26 lines (25 loc) · 941 Bytes
/
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
// swift-tools-version: 6.0
import PackageDescription
let package = Package(
name: "Beekeeper",
platforms: [
.iOS(.v16),
],
products: [
.library(name: "Beekeeper", targets: ["Beekeeper"]),
],
dependencies: [
.package(url: "https://github.com/krzyzanowskim/CryptoSwift.git", from: "1.8.1"),
.package(url: "https://github.com/apple/swift-async-algorithms.git", from: "1.0.3"),
.package(url: "https://github.com/pointfreeco/swift-clocks.git", from: "1.0.0"),
],
targets: [
.target(name: "Beekeeper", dependencies: [
.product(name: "CryptoSwift", package: "CryptoSwift"),
.product(name: "AsyncAlgorithms", package: "swift-async-algorithms"),
.product(name: "Clocks", package: "swift-clocks"),
]),
.testTarget(name: "BeekeeperTests", dependencies: ["Beekeeper"]),
],
swiftLanguageModes: [.version("6")]
)