48 releases (31 stable)
6.5.0 | May 29, 2024 |
---|---|
6.4.1 | Sep 5, 2023 |
6.3.0 | Jun 30, 2023 |
6.2.1 | Jul 13, 2022 |
0.7.0 | Oct 2, 2017 |
#48 in HTTP server
3,722 downloads per month
Used in 30 crates
(25 directly)
115KB
2K
SLoC
swagger-rs
A set of common utilities for crates generated by the rust-server
openapi-generator generator
Releasing a new version
- Run
./release-changelog.sh <version>
to update the changelog andCargo.toml
- Commit and push your changes.
- Wait for a travis build to complete successfully.
- Run
cargo publish
. - Tag the new version and push the tag.
lib.rs
:
Support crate for Swagger codegen.
Crate features
Crate features exist to reduce the dependencies on the crate. Most features should be enabled by the generator when relevant.
By default, the serdejson feature is enabled.
Format support
- multipart_form - Enable support for
multipart/form-data
as described in RFC 7578 - multipart_related - Enable support for
multipart/related
as described in RFC 2387 - serdejson - Enable JSON serialization/deserialization support using serde.
Feature support
- serdevalid - Enable support for JSON schema based validation
- conversion - Enable support for Frunk-based conversion - in particular, transmogrification
Use case support
- client - Enable support for providing an OpenAPI client
- server - Enable support for providing an OpenAPI server
- http1 - Enable support for HTTP/1 based APIs - RFC 9112
- http2 - Enable support for HTTP/2 based APIs - RFC 9113
- tcp - Enable support for HTTP over TCP
- tls - Enable support for HTTP over TLS (HTTPS)
- uds - Enable support for HTTP over UDS (Unix Domain Sockets)
Dependencies
~7–20MB
~281K SLoC