Bennet Bleßmann

Results 36 comments of Bennet Bleßmann

The wayback machine has the site archived while it was still available https://web.archive.org/web/20200530183759/https://pastebin.com/FrRUahFE ```python # -*- coding: utf-8 -*- # Source: https://stackoverflow.com/a/1119769 BASE62 = "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ" def encode(num, alphabet=BASE62): """Encode a...

> Rust 1.57 or greater is required. Maybe [rust-version](https://doc.rust-lang.org/cargo/reference/manifest.html#the-rust-version-field) could be set in `Cargo.toml` so that one would get an error pointing at the too old version?

RustCrypto/elliptic-curves#621 appear to implement a trait/method with the missing conversion

Removing combined queues appears reasonable given how long this breakage went unnoticed, but I like to view the "all" queue as I find it gives a nice overview.

> OK... could fix by manually deleting Zulip installation folder and then reinstalling.. but looks like, for me, automatic update is broken right now. Thanks ! I just had the...

Based on which I reproduced in . It is currently possible in some cases to match non-exhaustive structs exhaustively, resulting in a breaking change if such a struct is change...

Note that `utf8` is currently an alias of `utf8mb3` which is deprecated and the recommendation is to use `utf8mb4` to prevent ambiguity should the alias be changed in the future....

Just had the same problem again going from 5.9.3 to 5.9.5. Same workaround worked for me.

This also appears to be the same problem as #86, based on the logs posed in the linked issue

What about `env_logger::Builder::default().filter_level(LevelFilter::Info).parse_default_env().init();` ? By parsing the env after applying the filters the env should be able to overwrite them.