//! Crate for benchmarking arbritary binaries using [`egui`]
//TODO: make some functions use color_eyre or custom error types, to remove the expects
extern crate tracing;
///Separator to be used for storing lists in EGUI.
///
///Since commas can reasonably appear, I'm instead using this, which theoretically shouldn't appear very often.
pub const EGUI_STORAGE_SEPARATOR: &str = "---,---";