Paperclip offers tooling for the OpenAPI specification. Once complete, it will provide:
- Code generation for efficient, type-safe, compile-time checked HTTP APIs (server, client and CLI) in Rust.
- Support for processing, validating and hosting OpenAPI spec.
- Customization for spec and code generation.
It's currently under active development and may not be ready for production use just yet.
You may be interested in:
- Make sure you have
rustup
installed.cd
into this repository and runmake prepare
to setup your environment. - Now run
make
to build and run the tests.
This project welcomes all kinds of contributions. No contribution is too small!
If you want to contribute to this project but don't know how to begin or if you need help with something related to this project, feel free to send me an email (in Github profile) or join the Discord server.
This project follows the Rust Code of Conduct.
Licensed under either of
- Apache License, Version 2.0 (LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0)
- MIT license (LICENSE-MIT or http://opensource.org/licenses/MIT)
at your option.
Folks who have sponsored for the development of this project:
Why is this generating raw Rust code instead of leveraging procedural macros for compile-time codegen?
I don't think proc macros are the right way to go for REST APIs. We need to be able to see the generated code somehow to identify names, fields, supported methods, etc. With proc macros, you sorta have to guess.
This doesn't mean you can't generate APIs in compile-time. The only difference is that you'll be using build scripts instead and include!
the relevant code. That said, we're using proc-macros for other things.
The error thrown at compile-time doesn't look like it's very useful. Isn't there a better way to do this?
None that I can think of, sadly.
New ideas are here needed.