From f4e0a024eb437c98df14f7a5285f8a1258a75fba Mon Sep 17 00:00:00 2001 From: Rekai Musuka Date: Wed, 5 May 2021 18:37:11 -0500 Subject: [PATCH] chore: update .gitignore --- .gitignore | 6 +++++- Cargo.toml | 3 +++ 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 64b0854..905d3d8 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,8 @@ /target /.idea /.vscode -/bin \ No newline at end of file +/bin + +# Perf Data +perf.data* +flamegraph.svg \ No newline at end of file diff --git a/Cargo.toml b/Cargo.toml index 992cbd6..d23231c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -14,3 +14,6 @@ gilrs = "^0.8" pixels = "^0.2" winit = "^0.24" winit_input_helper = "^0.9" + +[profile.release] +debug = true