-
-
Notifications
You must be signed in to change notification settings - Fork 309
/
Package.swift
26 lines (24 loc) · 918 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:5.8
import PackageDescription
let package = Package(
name: "XcodeProj",
products: [
.library(name: "XcodeProj", targets: ["XcodeProj"]),
],
dependencies: [
.package(url: "https://github.com/tadija/AEXML.git", .upToNextMinor(from: "4.6.1")),
.package(url: "https://github.com/kylef/PathKit.git", .upToNextMinor(from: "1.0.1")),
.package(url: "https://github.com/apple/swift-docc-plugin", from: "1.4.3"),
],
targets: [
.target(name: "XcodeProj",
dependencies: [
.product(name: "PathKit", package: "PathKit"),
.product(name: "AEXML", package: "AEXML"),
],
swiftSettings: [
.enableExperimentalFeature("StrictConcurrency"),
]),
.testTarget(name: "XcodeProjTests", dependencies: ["XcodeProj"]),
]
)