-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathPackage.swift
More file actions
43 lines (41 loc) · 1.23 KB
/
Package.swift
File metadata and controls
43 lines (41 loc) · 1.23 KB
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
// swift-tools-version: 6.0
import PackageDescription
let package = Package(
name: "SchibstedAccount",
platforms: [
.iOS(.v16),
.tvOS(.v16),
.watchOS(.v9)
],
products: [
.library(
name: "SchibstedAccount",
targets: ["SchibstedAccount"]
)
],
dependencies: [
.package(url: "https://github.com/apple/swift-log.git", from: "1.6.2"),
.package(url: "https://github.com/airsidemobile/JOSESwift.git", from: "3.0.0"),
.package(url: "https://github.com/pointfreeco/swift-snapshot-testing", from: "1.18.4")
],
targets: [
.target(
name: "SchibstedAccount",
dependencies: [
.product(name: "JOSESwift", package: "JOSESwift"),
.product(name: "Logging", package: "swift-log")
],
resources: [
.process("Resources")
]
),
.testTarget(
name: "SchibstedAccountTests",
dependencies: [
"SchibstedAccount",
.product(name: "JOSESwift", package: "JOSESwift"),
.product(name: "SnapshotTesting", package: "swift-snapshot-testing")
]
)
]
)