From 3892f7ba980ff564adfb6816c63e8ebad18586b4 Mon Sep 17 00:00:00 2001 From: gigirassy Date: Fri, 19 Jun 2026 18:22:19 +0200 Subject: [PATCH] Add Cargo.toml --- Cargo.toml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 Cargo.toml diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..f3fc4b8 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,14 @@ +[package] +name = "the-pit" +version = "0.1.0" +edition = "2024" + +[dependencies] +tokio = { version = "1", features = ["full"] } +mimalloc = "0.1" + +[profile.release] +lto = true +codegen-units = 1 +panic = "abort" +strip = true \ No newline at end of file