diff -r ff4656da04af -r e09437844ad9 src/main.rs --- a/src/main.rs Fri Oct 18 14:22:45 2024 -0500 +++ b/src/main.rs Fri Oct 18 19:52:06 2024 -0500 @@ -1,5 +1,12 @@ + +// We use unicode. We would like to use much more of it than Rust allows. +// Live with it. Embrace it. +#![allow(uncommon_codepoints)] +#![allow(mixed_script_confusables)] +#![allow(confusable_idents)] mod manifold; +mod fb; mod cube; fn main() {