James
James
Passing an `ImageBuffer` to a `JpegEncoder` and encoding it as `ColorType::Rgba8` causes an internal panic. Code to reproduce: ```rust use image::{DynamicImage, jpeg::JpegEncoder, ColorType}; fn main() { let image = DynamicImage::new_rgb8(10,...
Might be an easily answered question if I looked harder, but is it possible to take a raw RGBA buffer and pass it to ImageMagick using this crate? I imagine...
Attempting to search for bots on the website with any search query results in all listed bots displaying their guild count as zero. I have observed this behaviour on both...
As it stands, the current format of the analytics graphs leaves much to be desired.  Some issues I've had with them: - Both axes have no grid, making it...
Fixes https://github.com/rust-lang/rust-clippy/issues/11858 Adds a new lint which checks for an if-conditional which checks if a sequence is not empty (`!seq.is_empty()`) and, in the body of the if statement, accesses the...
Fixes https://github.com/rust-lang/rust-clippy/issues/12163 I decided to initially make this a restriction lint because it felt a bit niche and opinionated to be a warn-by-default style lint. It may be appropriate as...
Closes https://github.com/rust-lang/rust-clippy/issues/10118 This lint checks `map_or` method calls to check if they can be consolidated down to something simpler and/or more readable. For example, the code ```rs let x =...
For larger Discord bots, the ability to proxy the gateway can be very useful for much faster restarts, by only restarting the gateway connection when absolutely necessary. Several standalone gateway...
assyst-core is by far the largest crate in Assyst, handling most of the core logic. Unfortunately, as a result, it is very expansive and is not easy to navigate for...
Some files in the assyst2 codebase are direct ports of their legacy counterparts. One notable example is `assyst-core/src/bad_translator.rs`. However, this implementation probably does not take advantage of newer features in...