Rocket icon indicating copy to clipboard operation
Rocket copied to clipboard

A web framework for Rust.

Results 144 Rocket issues
Sort by recently updated
recently updated
newest added

This is a followup from IRC ## Feature Requests It would be nice to have a way to chain data guard. > 1. Why you believe this feature is necessary....

request
accepted

Hi. I'm upgrading one of my applications from Rocket 0.4 to 0.5. I am having a little trouble converting my custom `FromFormValue` to `FromFormField`. My old code is roughly like...

enhancement

Hi Sergio, I'm loving the rocket so far. I'm trying to create a REST API for a protocol known as IEEE 2030.5. This protocol uses this content type on its...

question
request

Inspired by #1505, Rocket's testing suite should be checking that we log what we expect. In particular, that warnings and errors are emitted, at run-time, when desired. Furthermore, we should...

enhancement
help wanted

At present, Rocket reexports Hyper types under `http:hyper`. Hyper causes a lot of issues, particularly when trying to optimize performance. A decision needs to be made on whether to stabilize...

It's currently not possible to tap into Rocket's logging infrastructure in any easy way. Of course, logging is important, and so it's necessary to have a nice, clean API for...

enhancement
help wanted

Currently rocket requires to redefine the same route twice if you want to add options support. Two Options 1) When you use a method annotation such as get, it also...

request

It's common to convert between different Error types using From conversions (the popular error_chain and failure crates both promote this). Rust's try! automatically calls .into() to facilitate these conversions. into_outcome...

suggestion

Testing forms in Rocket is currently an entirely manual process: ```rust let client = Client::tracked(rocket).unwrap(); let response = client.post("/") .header(ContentType::Form) .body("field=value&is+it=a+cat%3F") .dispatch(); ``` With the addition of multipart form support,...

enhancement
help wanted

This has been converted into a tracking issue for "Alllow customizing HTTP headers for NamedFile, StaticFiles". Original text after the fold. This tracking issue is a merger of the following:...

request
accepted