diff options
author | Martin Fischer <martin@push-f.com> | 2021-04-09 14:23:14 +0200 |
---|---|---|
committer | Martin Fischer <martin@push-f.com> | 2021-04-09 14:28:25 +0200 |
commit | f755eb02b4be1a2d97941f15c776d2391420ecad (patch) | |
tree | 48d4cab357e11cacf7de4a0546f1cae3db5a6382 /README.md | |
parent | 61d8ccaddde9ce3f50d11daa706e0c93f70a3cd4 (diff) |
make security module optional
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -12,10 +12,10 @@ with [Serde](https://serde.rs/) you can enable the following feature flags: `into_form` method for parsing data submitted from HTML forms. - `hyper_body_json` additionaly provides an `into_json` method -Furthermore Sputnik provides what's necessary to implement [signed & expiring -cookies](#signed--expiring-cookies) with the expiry date encoded into the -signed cookie value, providing a more lightweight alternative to JWT if you -don't need interoperability. +With the `security` feature Sputnik furthermore provides what's necessary to +implement [signed & expiring cookies](#signed--expiring-cookies) with the +expiry date encoded into the signed cookie value, providing a more +lightweight alternative to JWT if you don't need interoperability. Sputnik does **not** handle routing because even complex routing can be quite easily implemented with nested `match` blocks. If you want a more high-level |