apiraino
apiraino
... and delete cookie
Try to shed more light when serde report an error. Try this crate: [dtolnay/path-to-error](https://github.com/dtolnay/path-to-error)
Instead of having many serializers with minimal differences is it possible to derive one from the other? Maybe [with this]( https://github.com/rust-lang/crates.io/blob/5fa8ad32cc3470b3d320d4620ba305c8d220ff2d/src/models/krate.rs#L51) and also maybe [this](https://github.com/rust-lang/crates.io/blob/6fa8ad32cc3470b3d320d4620ba305c8d220ff2d/src/models/krate.rs#L131) and [here](https://github.com/rust-lang/crates.io/blob/6fa8ad32cc3470b3d320d4620ba305c8d220ff2d/src/controllers/version/deprecated.rs#L27). Example: I never...
- UserAuth FK on users.id - Roles FK on users.id ref: https://stackoverflow.com/a/1884841 then add a `db::get_user_from_token()`, `db::get_user_profile()`, ...
Installing `cargo` is a burden, how can we accomplish to run the migration without it? Ideas: - perhaps a bash script could do most of what the `diesel` cli does...
Hi! I know that packaging is not developer's work, but have you considered (and perhaps already discarded) publishing also a `.deb` for this project? It's super useful for CI/CD but...
How to reproduce: - first start (no config saved) - `Data` and `Cache` directories created - login on oagd.net, run `Update Game Database` `Data/Databases` is populated - on first game...
This patchset rewrites the tutorial to create the master and the sub keys and creates a `./contrib` directory with two templates (RSA4096 and ED25519) to create the master key. I've...
Hi! I've recently learned how to use the gpg `--batch` and `--quick-add-key` commands, I find them useful and imo they remove a bit of complexity when creating keys, making the...
Hi, check this code out: ``` use thunder::thunderclap; struct MyApp; #[thunderclap] impl MyApp { fn hello(name: &str) -> Result { println!("Hello {}", name); } } fn main() { MyApp::hello("kat"); }...