Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Set MSRV to 1.75, remove #[async_trait] declarations whenever possible | Vika | 2024-08-26 | 1 | -2/+0 |
| | | | | | | | Axum still uses `async_trait`, let them do whatever they want. I will no longer be subject to the humiliation of trying to dig through lifetime errors and unreadable declarations. Also I don't fucking care about MSRV, I'm not a library. If you don't have modern Rust, get one. | ||||
* | Moved the entire Kittybox tree into the root | Vika | 2023-07-29 | 1 | -0/+398 |
| | |||||
* | flake.nix: reorganize | Vika | 2022-05-24 | 1 | -392/+0 |
| | | | | | | | | | | | | - Kittybox's source code is moved to a subfolder - This improves build caching by Nix since it doesn't take changes to other files into account - Package and test definitions were spun into separate files - This makes my flake.nix much easier to navigate - This also makes it somewhat possible to use without flakes (but it is still not easy, so use flakes!) - Some attributes were moved in compliance with Nix 2.8's changes to flake schema | ||||
* | Deprecated Redis backend and added a database migration tool (untested, beware) | Vika | 2021-10-27 | 1 | -6/+20 |
| | |||||
* | Implemented support for channels | Vika | 2021-09-27 | 1 | -62/+9 |
| | |||||
* | Improved Redis module code quality | Vika | 2021-08-15 | 1 | -13/+10 |
| | |||||
* | Shortened a connection timeout and installed a lifetime limit for connection | Vika | 2021-08-06 | 1 | -1/+4 |
| | |||||
* | Trying to mitigate and log more about the HTTP 500s | Vika | 2021-08-05 | 1 | -10/+12 |
| | |||||
* | Fixed a VERY WRONG way to handle stream errors | Vika | 2021-08-04 | 1 | -30/+16 |
| | | | | | | for future reference: stream operations returning Result satisfy conditions for the futures::stream::TryStreamExt trait, allowing you to use `TryStreamExt::try_collect::<T>()` and receive a Result<T>. | ||||
* | Relaxed anti-takeover URL check to simply not place redirects at foreign URLs | Vika Shleina | 2021-07-19 | 1 | -2/+2 |
| | |||||
* | Make rustfmt happy again after Clippy edits | Vika | 2021-05-18 | 1 | -4/+1 |
| | |||||
* | Make clippy happy | Vika | 2021-05-17 | 1 | -12/+8 |
| | |||||
* | Make rustfmt happy | Vika | 2021-05-17 | 1 | -83/+210 |
| | |||||
* | Added setting store per-user | Vika | 2021-05-17 | 1 | -0/+10 |
| | |||||
* | Update CI configuration and GitLab WebIDE settings | Vika | 2021-05-17 | 1 | -1/+1 |
| | |||||
* | Added a note to future self | Vika | 2021-05-05 | 1 | -0/+7 |
| | |||||
* | Refactored the Redis instance spawning in tests to automatically kill Redis | Vika | 2021-05-05 | 1 | -3/+22 |
| | |||||
* | Moved the Redis spawner to the Redis module where it belongs, refactored ↵ | Vika | 2021-05-05 | 1 | -0/+39 |
| | | | | tests to use the Redis database instead of a fake one | ||||
* | Added a connection pool to the RedisDatabase | Vika | 2021-05-05 | 1 | -17/+27 |
| | |||||
* | Refactored error handling in RedisStorage using the ? operator | Vika | 2021-05-05 | 1 | -184/+124 |
| | |||||
* | Clippy lints | Vika | 2021-05-04 | 1 | -18/+12 |
| | |||||
* | Fixed Redis tests | Vika | 2021-05-04 | 1 | -1/+1 |
| | |||||
* | Refactored the database module and its tests | Vika | 2021-05-04 | 1 | -0/+304 |