Skip to content

Commit 576a65b

Browse files
Disable default OpenAPIRuntime traits (#87)
Disables the default traits for OpenAPIRuntime, so that anyone that depends on urlsession transport, can choose disable the default. runtime traits Related: * swift-server/swift-openapi-async-http-client#59 * apple/swift-openapi-generator#878 --------- Co-authored-by: Si Beaumont <[email protected]>
1 parent 3c513e0 commit 576a65b

3 files changed

Lines changed: 3 additions & 1 deletion

File tree

.licenseignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,5 @@
77
**.md
88
**.txt
99
**Package.swift
10+
Package@swift-*.swift
1011
.editorconfig

.swiftformatignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
**Package.swift
2+
Package@swift-*.swift

Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ let package = Package(
3434
platforms: [.macOS(.v10_15), .macCatalyst(.v13), .iOS(.v13), .tvOS(.v13), .watchOS(.v6), .visionOS(.v1)],
3535
products: [.library(name: "OpenAPIURLSession", targets: ["OpenAPIURLSession"])],
3636
dependencies: [
37-
.package(url: "https://github.com/apple/swift-openapi-runtime", from: "1.8.2"),
37+
.package(url: "https://github.com/apple/swift-openapi-runtime", from: "1.11.0", traits: []),
3838
.package(url: "https://github.com/apple/swift-http-types", from: "1.0.0"),
3939
.package(url: "https://github.com/apple/swift-collections", from: "1.0.0"),
4040
],

0 commit comments

Comments
 (0)