Honza Dvorsky 0d9e57945b Prepare being compatible with runtime 0.2.0 release (#12)
Prepare being compatible with runtime 0.2.0 release

### Motivation

Runtime 0.2.0 is compatible with 0.1.3+ in the APIs adopted in the transport, so just reflect that in the manifest.

### Modifications

Increased the supported runtime range to include 0.2.x.

### Result

Once released, folks will be able to use 0.1.x of this transport with both 0.1.x and 0.2.x of runtime.

### Test Plan

Will be manually tested once runtime 0.2.0 is released.


Reviewed by: gjcairo

Builds:
     ✔︎ pull request validation (5.8) - Build finished. 
     ✔︎ pull request validation (5.9) - Build finished. 
     ✔︎ pull request validation (nightly) - Build finished. 
     ✔︎ pull request validation (soundness) - Build finished. 

https://github.com/swift-server/swift-openapi-async-http-client/pull/12
2023-08-30 17:16:36 +02:00
2023-05-10 12:17:57 +01:00
2023-05-10 12:17:57 +01:00
2023-05-10 12:17:57 +01:00
2023-05-10 12:17:57 +01:00
2023-05-10 12:17:57 +01:00
2023-05-10 12:17:57 +01:00
2023-05-10 12:17:57 +01:00
2023-05-10 12:17:57 +01:00

AsyncHTTPClient Transport for Swift OpenAPI Generator

A client transport that uses the HTTPClient type from the AsyncHTTPClient library to perform HTTP operations.

Use the transport with client code generated by Swift OpenAPI Generator.

Supported platforms and minimum versions

macOS Linux
10.15+

Usage

Add the package dependency in your Package.swift:

.package(
    url: "https://github.com/swift-server/swift-openapi-async-http-client", 
    .upToNextMinor(from: "0.1.0")
),

Note that this repository does not have a 1.0 tag yet, so the API is not stable.

Next, in your target, add OpenAPIAsyncHTTPClient to your dependencies:

.target(name: "MyTarget", dependencies: [
    .product(name: "OpenAPIAsyncHTTPClient", package: "swift-openapi-async-http-client"),
],

Then, to get started, check out AsyncHTTPClientTransport.

Reporting issues

Please report any issues related to this library in the swift-openapi-generator repository.

Documentation

To learn more, check out the full documentation.

S
Description
AsyncHTTPClient transport for Swift OpenAPI Generator.
Readme 250 KiB
Languages
Swift 100%