Frojdholm
Frojdholm
Fixes a panic related to completion when using the arrow keys to navigate through the prompt history. Minimal reproduction steps for the panic ``` :asdf
I was trying to work with code similar to the `draw_captur_hi_res.rs` example that rendered to a texture, but my code was crashing when I was closing the nannou window using...
As of rand 0.8 many useful distributions, such as the Gaussian/normal distribution, have been moved from `rand::distributions` to the rand_distr crate. These are very useful for creative coding and I...
Fixes #19978 I wrote the following program to test different allocation sizes ```zig const std = @import("std"); const page_size = std.mem.page_size; pub fn main() !void { var gpa = std.heap.GeneralPurposeAllocator(.{...
Fixes #19977 This makes the following test not crash ```zig const std = @import("std"); test "retain metadata and never unmap" { var gpa = std.heap.GeneralPurposeAllocator(.{ .safety = true, .never_unmap =...