-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathPackage.swift
More file actions
181 lines (172 loc) · 6.86 KB
/
Copy pathPackage.swift
File metadata and controls
181 lines (172 loc) · 6.86 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
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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
// swift-tools-version: 6.3
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
import Foundation
// Availability Macros
let availabilityTags: [_Availability] = [
_Availability("Network") // Default Network availability
]
let versionNumbers = ["0.1.0"]
// Availability Macro Utilities
enum _OSAvailability: String {
// The OS versions in which `Network 0.1.0` APIs first became available.
case alwaysAvailable = "macOS 26, iOS 26, tvOS 26, watchOS 26, visionOS 26"
// Use 10000 for future availability to avoid compiler magic around the 9999 version number but ensure it is greater than 9999
case future = "macOS 10000, iOS 10000, tvOS 10000, watchOS 10000, visionOS 10000"
}
struct _Availability {
let name: String
let osAvailability: _OSAvailability
init(_ name: String, availability: _OSAvailability = .alwaysAvailable) {
self.name = name
self.osAvailability = availability
}
}
let availabilityMacros: [SwiftSetting] = versionNumbers.flatMap { version in
availabilityTags.map {
.enableExperimentalFeature("AvailabilityMacro=\($0.name) \(version):\($0.osAvailability.rawValue)")
}
}
let allApplePlatforms: [Platform] = [
.driverKit, .iOS, .macCatalyst, .macOS, .tvOS, .visionOS, .watchOS,
]
// Logging levels, qlog output, and QUIC signposts are configured via package
// traits. See the `traits:` list on the `Package(...)` initializer below.
let settings: [SwiftSetting] = [
.define("IMPORT_SWIFTTLS"),
.define("EXPORT_SWIFTTLS"),
.define("IMPORT_CRYPTO"),
.define("SWIFTTLS_CERTIFICATE_VERIFICATION"),
.unsafeFlags(["-Xfrontend", "-experimental-spi-only-imports"]),
.enableExperimentalFeature("Lifetimes"),
.enableExperimentalFeature("AnyAppleOSAvailability"),
.enableUpcomingFeature("ExistentialAny"),
]
let package = Package(
name: "swift-network-evolution",
products: [
.library(
name: "SwiftNetwork",
targets: ["SwiftNetwork"]
),
.library(
name: "SwiftNetworkBenchmarks",
targets: ["SwiftNetworkBenchmarks"]
),
],
traits: [
.trait(
name: "DisableDebugLogging",
description: "Disables the `debug` and `info` logging levels."
),
.trait(
name: "DisableErrorLogging",
description: "Disables the `error`, `notice`, and `fault` logging levels."
),
.trait(
name: "DatapathLogging",
description:
"Enables the verbose `datapath` logging level (requires that `DisableDebugLogging` is not enabled)."
),
.trait(
name: "QlogOutput",
description: "Enables qlog output from the QUIC implementation."
),
.trait(
name: "SignpostOutput",
description: "Enables `OSSignposter` output from the QUIC implementation."
),
// To support back to macOS 26, provide a shim on top of crypto APIs
// that allows passing spans is provided. This is a less performant path, so for
// performance-sensitive cases, pass in this trait to disable this shim.
.trait(
name: "DISABLE_SHIM_CRYPTO_SPAN_APIS",
description: "Disable backwards compatible crypto shim for performance sensitive cases"
),
.default(enabledTraits: []),
],
dependencies: [
.package(url: "https://github.com/apple/swift-log.git", from: "1.0.0"),
.package(url: "https://github.com/apple/swift-collections.git", from: "1.5.0"),
.package(url: "https://github.com/apple/swift-crypto.git", from: "5.0.0-beta.1"),
.package(url: "https://github.com/apple/swift-tls.git", .upToNextMinor(from: "0.1.0")),
],
targets: [
.target(
name: "SwiftNetwork",
dependencies: [
.product(name: "Logging", package: "swift-log", condition: .when(platforms: [.linux])),
.target(name: "SwiftNetworkLinuxShim", condition: .when(platforms: [.linux])),
.product(name: "DequeModule", package: "swift-collections"),
.product(name: "BasicContainers", package: "swift-collections"),
.product(name: "Crypto", package: "swift-crypto"),
.product(name: "CryptoExtras", package: "swift-crypto"),
.product(name: "SwiftTLS", package: "swift-tls"),
],
swiftSettings: availabilityMacros + settings
),
.target(
name: "SwiftNetworkLinuxShim",
dependencies: [],
cSettings: [
.define("_GNU_SOURCE")
],
swiftSettings: settings
),
.target(
name: "SwiftNetworkBenchmarks",
dependencies: [
"SwiftNetwork",
.product(name: "SwiftTLS", package: "swift-tls"),
.product(name: "Crypto", package: "swift-crypto"),
.product(name: "Logging", package: "swift-log", condition: .when(platforms: [.linux])),
],
swiftSettings: availabilityMacros + settings
),
.testTarget(
name: "SwiftNetworkTests",
dependencies: ["SwiftNetwork"],
swiftSettings: availabilityMacros + settings
),
.testTarget(
name: "QUICTests",
dependencies: ["SwiftNetwork"],
swiftSettings: availabilityMacros + settings
),
.executableTarget(
name: "QUICHandshake",
dependencies: ["SwiftNetwork", "SwiftNetworkBenchmarks"],
path: "Sources/Tools/QUICHandshake",
exclude: ["README.md"],
swiftSettings: availabilityMacros + settings,
),
.executableTarget(
name: "IPUDPTransfer",
dependencies: ["SwiftNetwork", "SwiftNetworkBenchmarks"],
path: "Sources/Tools/IPUDPTransfer",
exclude: ["README.md"],
swiftSettings: availabilityMacros + settings
),
.executableTarget(
name: "QUICTransfer",
dependencies: ["SwiftNetwork", "SwiftNetworkBenchmarks"],
path: "Sources/Tools/QUICTransfer",
exclude: ["README.md"],
swiftSettings: availabilityMacros + settings
),
.executableTarget(
name: "QUICStreamLoad",
dependencies: ["SwiftNetwork", "SwiftNetworkBenchmarks"],
path: "Sources/Tools/QUICStreamLoad",
exclude: ["README.md"],
swiftSettings: availabilityMacros + settings
),
.executableTarget(
name: "SocketTransfer",
dependencies: ["SwiftNetwork", "SwiftNetworkBenchmarks"],
path: "Sources/Tools/SocketTransfer",
exclude: ["README.md"],
swiftSettings: availabilityMacros + settings
),
]
)