This crate is an extension to the popular gotham web framework for Rust. The idea is to
have several RESTful resources that can be added to the gotham router. This crate will take care
of everything else, like parsing path/query parameters, request bodies, and writing response
bodies, relying on serde
and serde_json
for (de)serializing. If you
enable the openapi
feature, you can also generate an OpenAPI Specification from your RESTful
resources.
To use this crate, add the following to your Cargo.toml
:
toml
[dependencies]
gotham_restful = "0.0.1"
A basic server with only one resource, handling a simple GET
request, could look like this:
```rust /// Our RESTful Resource.
struct UsersResource;
/// Our return type.
struct User { id: i64, username: String, email: String }
/// Our handler method.
fn readall(state: &mut State) -> Success
/// Our main method.
fn main() {
gotham::start("127.0.0.1:8080", buildsimplerouter(|route| {
route.resource::
Uploads and Downloads can also be handled, but you need to specify the mime type manually:
```rust
struct ImageResource;
struct RawImage(Vec
fn create(state : &mut State, body : RawImage) -> Raw
Look at the [example] for more methods and usage with the openapi
feature.
These are currently known major issues. For a complete list please see the issue tracker. If you encounter any issues that aren't yet reported, please report them here.
openapi
feature might break code (#4)chrono
's DateTime
types, the format is date-time
instead of datetime
(openapiv3#14)Licensed under your option of: - Apache License Version 2.0 - Eclipse Public License Version 2.0