summaryrefslogtreecommitdiff
path: root/Cargo.toml
Commit message (Collapse)AuthorAgeFilesLines
* update dependencies ∴ version 0.1.1pennae2023-10-151-1/+1
|
* update dependenciespennae2023-02-041-0/+1
| | | | | | a few were vulnerable according to cargo-audit, but none of it would've mattered for us (probably). time is still vulnerable, but that really doesn't matter.
* switch to hyper backend for web-pushpennae2023-02-041-1/+6
| | | | | | upgrading dependencies will mean we have to use hyper for web-push instead of isahc. sadly hyper doesn't send content-length headers for empty bodies, but we can fudge that for the tests.
* improve the readme slightly, add licensepennae2022-07-251-2/+1
|
* remove dependency on chronopennae2022-07-251-2/+2
| | | | | | prompted by a cargo audit run. time works just as well and is better maintained. web-push still uses chrono, but from the looks of things it won't be affected.
* don't use lettre connection poolspennae2022-07-191-1/+5
| | | | | we'll send mail so rarely, keeping a connection open at all times just spams syslog
* remove zeroize dependencypennae2022-07-171-1/+0
| | | | | | | | this is not so much a problem as a possible source of false security for the readers. all secret keys we handle are serialized in some form, and those serialization buffers are *not* zeroed out after use. zeroing our raw buffers doesn't help much in that case, using a zero-on-free allocator would be much more helpful.
* initial importpennae2022-07-131-0/+41