42 releases

0.13.3 Mar 6, 2024
0.13.1 Dec 18, 2023
0.12.0 Sep 23, 2023
0.11.0 Apr 30, 2023
0.1.5 Oct 16, 2020

#116 in Rust patterns

Download history 6027/week @ 2023-12-08 5050/week @ 2023-12-15 2114/week @ 2023-12-22 2556/week @ 2023-12-29 4621/week @ 2024-01-05 4356/week @ 2024-01-12 4418/week @ 2024-01-19 4479/week @ 2024-01-26 5451/week @ 2024-02-02 5429/week @ 2024-02-09 5744/week @ 2024-02-16 5068/week @ 2024-02-23 4934/week @ 2024-03-01 6094/week @ 2024-03-08 6023/week @ 2024-03-15 5016/week @ 2024-03-22

22,859 downloads per month
Used in 12 crates

MIT/Apache

3.5MB
6.5K SLoC

Rust 5K SLoC // 0.0% comments JavaScript 1.5K SLoC // 0.0% comments

Aide

A code-first API documentation and utility library.


lib.rs:

Aide

aide is a code-first Open API documentation generator library. It aims for tight integrations with frameworks and following their conventions, while tries to be out of the way when it is not needed.

The goal is to minimize the learning curve, mental context switches and make documentation somewhat slightly less of a chore.

See the examples to see how Aide is used with various frameworks.

Currently only Open API version 3.1.0 is supported.

Previous releases of aide relied heavily on macros, and the linkme crate for automagic global state. While it all worked, macros were hard to reason about, rustfmt did not work with them, code completion was hit-and-miss.

With 0.5.0, aide was rewritten and instead it is based on on good old functions, type inference and declarative APIs based on the builder pattern.

Now all documentation can be traced in the source code[^1], no more macro and global magic all over the place.[^2]

[^1]: and with [tracing] spans

[^2]: A thread-local context is still used for some settings and shared state.

Type-based Generation

The library uses schemars for schema generation for types. It should be enough to slap JsonSchema alongside [serde]'s Serialize/Deserialize for JSON-based APIs.

Additionally the OperationInput and OperationOutput traits are used for extractor and response types in frameworks to automatically generate expected HTTP parameter and response documentation.

For example a Json<T> extractor will generate an application/json request body with the schema of T if it implements JsonSchema.

Declarative Documentation

All manual documentation is based on composable transform functions and builder-pattern-like API.

Supported Frameworks

  • axum: aide::axum.
  • actix-web is not supported since 0.5.0 only due to lack of developer capacity, but it's likely to be supported again in the future. If you use actix-web you can still use the macro-based 0.4.* version of the library for the time being.

Errors

Some errors occur during code generation, these are usually safe to ignore but might indicate bugs.

By default no action is taken on errors, in order to handle them it is possible to register an error handler in the thread-local context with aide::gen::on_error.

False positives are chosen over silently swallowing potential errors, these might happen when there is not enough contextual information to determine whether an error is in fact an error. It is important to keep this in mind, without any filters simply panicking on all errors is not advised, especially not in production.

Feature Flags

No features are enabled by default.

  • macros: additional helper macros

Third-party trait implementations

  • bytes
  • http
  • serde_qs (when used with axum)

axum integration

axum and its features gates:

  • axum
  • axum-ws
  • axum-multipart
  • axum-headers

axum-extra and its features gates:

  • axum-extra
  • axum-extra-cookie
  • axum-extra-cookie-private
  • axum-extra-form
  • axum-extra-query

MSRV

The library will always support the latest stable Rust version, it might support older versions but without guarantees.

Dependencies

~2–18MB
~250K SLoC