Arjen
Arjen
Suggestion to always add the Secure flag to state cookie Closes #38
In https://github.com/jebrosen/rocket_oauth2/blob/0.5.0-rc.1/src/lib.rs#L693 the `rocket_oauth2_state` cookie is set. By default, Rocket's [`add_private`](https://docs.rs/rocket/0.5.0-rc.2/rocket/http/struct.CookieJar.html#method.add_private) securely configures cookies with `httponly(true)`, however the `secure` flag is not set. Would it be possible to add a...
Is it possible to create a generic newtype with `nutype`? When I do, let's say: ```rust use nutype::nutype; #[nutype(validate(predicate = |v| !v.is_empty()))] struct NonEmptyVec(Vec); ``` I get: ``` --> src/main.rs:4:27...
Note that this PR upgrades the MSRV to 1.80 Resolves #175 Closes #119 Closes #170
**Is your feature request related to a problem? Please describe.** I would like to combine `ts_rs` with enums that derive `strum::EnumString`. For example: ``` #[derive(strum::EnumString, strum::Display)] #[strum(serialize_all = "snake_case")] #[cfg_attr(test,...
In order to be able to pass the `TryUnwrapError` along with another error, it would be useful to be able to have some sort of `input_to_owned` method on `TryUnwrapError` to...