-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathPackage.swift
32 lines (30 loc) · 1.07 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
32
// swift-tools-version:6.0
import PackageDescription
let package = Package(
name: "Xcore",
platforms: [.iOS(.v17)],
products: [
.library(name: "Xcore", targets: ["Xcore"])
],
dependencies: [
.package(url: "https://github.com/SDWebImage/SDWebImage.git", from: "5.12.6"),
.package(url: "https://github.com/zmian/AnyCodable", branch: "master"),
.package(url: "https://github.com/kishikawakatsumi/KeychainAccess", from: "4.2.2"),
.package(url: "https://github.com/pointfreeco/swift-dependencies", from: "1.6.3"),
.package(url: "https://github.com/apple/swift-docc-plugin", from: "1.4.0")
],
targets: [
.target(
name: "Xcore",
dependencies: [
"SDWebImage",
"AnyCodable",
"KeychainAccess",
.product(name: "Dependencies", package: "swift-dependencies")
],
resources: [.process("Resources")]
),
.testTarget(name: "XcoreTests", dependencies: ["Xcore"])
],
swiftLanguageModes: [.v6]
)