-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPackage.swift
35 lines (33 loc) · 1.19 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
33
34
35
// swift-tools-version:5.5
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(
name: "XConfigs",
platforms: [
.iOS(.v14),
],
products: [
.library(
name: "XConfigs",
targets: ["XConfigs"]
),
],
dependencies: [
.package(url: "https://github.com/CombineCommunity/CombineExt", from: "1.8.1"),
.package(url: "https://github.com/michaelhenry/CombineCocoa", from: "1.0.1"),
.package(url: "https://github.com/michaelhenry/Prettier.swift", from: "1.1.1"),
.package(url: "https://github.com/raspu/Highlightr", from: "2.1.2"),
.package(url: "https://github.com/apple/swift-docc-plugin", from: "1.3.0"),
],
targets: [
.target(
name: "XConfigs",
dependencies: [
.product(name: "CombineExt", package: "CombineExt"),
.product(name: "CombineCocoa", package: "CombineCocoa"),
.product(name: "Prettier_swift", package: "Prettier.swift"),
.product(name: "Highlightr", package: "Highlightr"),
]
),
]
)