Skip to content

Instantly share code, notes, and snippets.

View cart's full-sized avatar

Carter Anderson cart

View GitHub Profile
use serde::{Deserialize, Serialize};
use std::{collections::HashMap, fs::read_to_string};
#[derive(Serialize, Deserialize, Debug)]
struct BloatOutput {
#[serde(alias = "file-size")]
file_size: usize,
#[serde(alias = "text-section-size")]
text_section_size: usize,
functions: Vec<Function>,
@cart
cart / merge-train.md
Created August 25, 2026 03:43
Bevy Merge Train for 2026-08-24 (Cart Edition)
  1. text input: Shift+Backspace is also backspace Definitely the desired behavior. One liner. Approved and merged.
  2. gate Local use in bevy_pbr for wasm This is necessary, but inlining the import cuts down on hard-to-maintain conditionals so I pushed that and merged.
  3. fix: disabled number input field isn't editable This works, but it should use a Without filter instead of a query + value check. Pushed that and merged.
  4. Make Dlss implement Default for all feature types Easy uncontroversial win. Approved and merged.
  5. Fix bevy not exporting bevy::extract Another quick win. Approved and merged.