disabled changes only necessary for benchmarks

This commit is contained in:
Anton-4 2021-01-20 11:47:32 +01:00
parent ff974e85e9
commit f588590b42
2 changed files with 5 additions and 5 deletions

View file

@ -34,6 +34,6 @@ members = [
[profile.release] [profile.release]
lto = "fat" lto = "fat"
codegen-units = 1 codegen-units = 1
debug = true # enable when profiling # debug = true # enable when profiling

View file

@ -46,12 +46,12 @@ pub mod error;
pub mod graphics; pub mod graphics;
mod keyboard_input; mod keyboard_input;
pub mod lang; pub mod lang;
//mod mvc; mod mvc;
pub mod mvc; // for benchmarking //pub mod mvc; // for benchmarking
mod resources; mod resources;
mod selection; mod selection;
//mod text_buffer; mod text_buffer;
pub mod text_buffer; // for benchmarking //pub mod text_buffer; // for benchmarking
mod util; mod util;
mod vec_result; mod vec_result;