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

**Existing Functionality** A clear and concise description of existing functionality and why it is insufficient. There are two styles of doing authentication in rocket, use fairing or use data guard...

suggestion

Resolves issue [2281](https://github.com/SergioBenitez/Rocket/issues/2281). Lines before the first pre-encapsulation boundary are ignored as specified in [RFC7468](https://datatracker.ietf.org/doc/html/rfc7468#section-2). Lines afterwards are ignores by the then chosen parsing function. Behaves the same otherwise.

**Description** Rocket rejected my PKCS 8/PEM formatted RSA TLS key file, claiming "bad TLS private key: invalid key header; supported formats are: RSA, PKCS8". After removing the leading and trailing...

triage

Fix clippy warning [unnecessary_lazy_evaluations](https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_lazy_evaluations) when using the `FromForm` derive macro. I only tested it on the `v0.5-rc` branch.

**Existing Functionality** Currently the documentation contains examples like this: ```toml ## NOTE: Don't (!) use this key! Generate your own! secret_key = "hPRYyVRiMyxpw5sBB1XeCMN1kFsDCqKvBi2QJxBVHQk=" ``` This warning is insufficient for someone...

suggestion

The thing I'm missing is an OutputCache like with ASP.NET. Ideally, you don't want to generate a new page but to fetch it from the cache. This would have an...

I have updated the dependency for `sqlx` from 0.5 to 0.6, but to do that, `diesel` also needs to be updated to the latest release candidate as I get an...

**Existing Functionality** I want to include a field in an entity for recording the date of a monetary transaction. FromFormField is implemented on PrimitiveDateTime but not DateTime. Deserialize/Serialize is implemented...

suggestion

**Existing Functionality** I am attempting to record monetary transactions and would like to use `rust_decimal::Decimal` for this field, but it requires me to implement FromFormField to use this. I would...

suggestion

**Is your feature request motivated by a concrete problem? Please describe.** Yes: The Bitwarden clients are able to upload files/attachments to the server. With Vaultwarden we use the `FromForm` derive...

request