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