diff --git a/Cargo.toml b/Cargo.toml index 777e51cf01..2d986f0009 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -34,6 +34,6 @@ members = [ [profile.release] lto = "fat" codegen-units = 1 -debug = true # enable when profiling +# debug = true # enable when profiling diff --git a/editor/src/lib.rs b/editor/src/lib.rs index cfdf2c6eb2..6ebfd8be74 100644 --- a/editor/src/lib.rs +++ b/editor/src/lib.rs @@ -46,12 +46,12 @@ pub mod error; pub mod graphics; mod keyboard_input; pub mod lang; -//mod mvc; -pub mod mvc; // for benchmarking +mod mvc; +//pub mod mvc; // for benchmarking mod resources; mod selection; -//mod text_buffer; -pub mod text_buffer; // for benchmarking +mod text_buffer; +//pub mod text_buffer; // for benchmarking mod util; mod vec_result;