-
Notifications
You must be signed in to change notification settings - Fork 5
/
Package.swift
48 lines (46 loc) · 1.37 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
36
37
38
39
40
41
42
43
44
45
46
47
48
// swift-tools-version: 5.7
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(
name: "Guise",
platforms: [.macOS(.v10_15), .iOS(.v15), .tvOS(.v15), .watchOS(.v8)],
products: [
.library(
name: "Guise",
targets: ["Guise"]
)
],
dependencies: [
.package(url: "https://github.com/apple/swift-atomics", from: "1.0.0"),
.package(url: "https://github.com/apple/swift-collections", from: "1.0.0")
],
targets: [
.target(
name: "Guise",
dependencies: [
.product(name: "Atomics", package: "swift-atomics"),
.product(name: "OrderedCollections", package: "swift-collections")
],
exclude: [
"Lazy/LazyResolver+Async.swift.gyb",
"Lazy/LazyResolver+Sync.swift.gyb",
"Lazy/LazyTagsResolver+Async.swift.gyb",
"Lazy/LazyTagsResolver+Sync.swift.gyb",
"Registrar/Auto.swift.gyb",
"Registrar/Registrar+Async.swift.gyb",
"Registrar/Registrar+Sync.swift.gyb",
"Resolver/Resolver+Async.swift.gyb",
"Resolver/Resolver+Sync.swift.gyb"
]
),
.testTarget(
name: "GuiseTests",
dependencies: ["Guise"],
exclude: [
"ArgumentTests.swift.gyb",
"LazyResolverTests.swift.gyb",
"LazyTagsResolverTests.swift.gyb"
]
)
]
)