-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathPackage.swift
115 lines (113 loc) · 5.66 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
// 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: "TootSDK",
platforms: [
.macOS(.v12),
.iOS(.v14),
.watchOS(.v7),
.tvOS(.v14),
],
products: [
// Products define the executables and libraries a package produces, and make them visible to other packages.
.library(
name: "MultipartKitTootSDK",
targets: ["MultipartKitTootSDK"]),
.library(
name: "TootSDK",
targets: ["TootSDK"]),
],
dependencies: [
.package(url: "https://github.com/apple/swift-nio.git", from: "2.2.0"),
.package(url: "https://github.com/apple/swift-collections.git", from: "1.0.2"),
.package(url: "https://github.com/scinfu/SwiftSoup.git", from: "2.7.7"),
.package(url: "https://github.com/karwa/swift-url.git", from: "0.4.2"),
.package(url: "https://github.com/apple/swift-crypto.git", "1.0.0"..<"4.0.0"),
],
targets: [
// Targets are the basic building blocks of a package. A target can define a module or a test suite.
// Targets can depend on other targets in this package, and on products in packages this package depends on.
.target(
name: "MultipartKitTootSDK",
dependencies: [
.product(name: "NIO", package: "swift-nio"),
.product(name: "NIOHTTP1", package: "swift-nio"),
.product(name: "Collections", package: "swift-collections"),
]),
.target(
name: "TootSDK",
dependencies: [
"MultipartKitTootSDK",
.product(name: "SwiftSoup", package: "SwiftSoup"),
.product(name: "WebURL", package: "swift-url"),
.product(name: "WebURLFoundationExtras", package: "swift-url"),
.product(name: "Crypto", package: "swift-crypto"),
],
resources: [.copy("PrivacyInfo.xcprivacy")]
),
.testTarget(
name: "TootSDKTests",
dependencies: ["TootSDK"],
resources: [
.copy("Resources/account.json"),
.copy("Resources/account_verify_credentials_condensed.json"),
.copy("Resources/account_mastodon_official.json"),
.copy("Resources/account_moved.json"),
.copy("Resources/account_pixelfed.json"),
.copy("Resources/account_pixelfed_mutes_blocks.json"),
.copy("Resources/activity.json"),
.copy("Resources/card_string_size.json"),
.copy("Resources/familiar_followers_nofollowers.json"),
.copy("Resources/featured_tag.json"),
.copy("Resources/featured_tag_unused.json"),
.copy("Resources/instance_akkoma.json"),
.copy("Resources/instance_catodon_contact_removed.json"),
.copy("Resources/instance_firefish_contact_removed.json"),
.copy("Resources/instance_friendica_nocontact.json"),
.copy("Resources/instance_iceshrimp_contact_removed.json"),
.copy("Resources/instance_iceshrimpnet.json"),
.copy("Resources/instance_sharkey_contact_removed.json"),
.copy("Resources/instance_pixelfed.json"),
.copy("Resources/instancev2_mastodon.json"),
.copy("Resources/instancev2_firefish.json"),
.copy("Resources/instancev2_friendica.json"),
.copy("Resources/instancev2_gotosocial.json"),
.copy("Resources/instancev2_pixelfed.json"),
.copy("Resources/instancev2_pleroma.json"),
.copy("Resources/list.json"),
.copy("Resources/post_edited.json"),
.copy("Resources/post no emojis.json"),
.copy("Resources/post with emojis and attachments.json"),
.copy("Resources/post wordle linebreaks.json"),
.copy("Resources/pixelfed.json"),
.copy("Resources/mastodon.json"),
.copy("Resources/pleroma.json"),
.copy("Resources/relationship.json"),
.copy("Resources/relationship_sharkey.json"),
.copy("Resources/scheduled_post_sensitive.json"),
.copy("Resources/scheduled_post_attachment.json"),
.copy("Resources/scheduled_post_multiple_attachments.json"),
.copy("Resources/scheduled_post_reply.json"),
.copy("Resources/streaming_delete.json"),
.copy("Resources/streaming_filters_changed.json"),
.copy("Resources/streaming_update.json"),
.copy("Resources/streaming_error.json"),
.copy("Resources/tag.json"),
.copy("Resources/translation_attachment.json"),
.copy("Resources/translation_poll.json"),
.copy("Resources/encrypted_push_notification.base64"),
.copy("Resources/nodeinfo_akkoma.json"),
.copy("Resources/nodeinfo_catodon.json"),
.copy("Resources/nodeinfo_firefish.json"),
.copy("Resources/nodeinfo_friendica.json"),
.copy("Resources/nodeinfo_gotosocial.json"),
.copy("Resources/nodeinfo_iceshrimp.json"),
.copy("Resources/nodeinfo_iceshrimpnet.json"),
.copy("Resources/nodeinfo_mastodon.json"),
.copy("Resources/nodeinfo_pixelfed.json"),
.copy("Resources/nodeinfo_pleroma.json"),
.copy("Resources/nodeinfo_sharkey.json"),
]),
]
)