From f24e05b7f67d64310ce0f91666518573f3e091bd Mon Sep 17 00:00:00 2001 From: semubico Date: Mon, 8 Sep 2025 13:07:25 +0200 Subject: [PATCH] Initial commit --- .gitignore | 5 +++++ Cargo.toml | 14 ++++++++++++++ 2 files changed, 19 insertions(+) create mode 100644 .gitignore create mode 100644 Cargo.toml diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..a812772 --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +/target +/assets +.env +config.toml + diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..c15c160 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,14 @@ +[package] +name = "template" +version = "0.1.0" +edition = "2021" +license = "GPL-2.0" + +[profile.release] +strip = true +opt-level = "s" +lto = "on" +codegen-units = 1 + +[dependencies] +