From dc8d66ecef86572a21bd3d41e50fc7ec92006ab7 Mon Sep 17 00:00:00 2001 From: gigirassy Date: Fri, 17 Jul 2026 02:35:30 +0200 Subject: [PATCH] Add Cargo.toml --- Cargo.toml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 Cargo.toml diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..49d9e80 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,17 @@ +cargo-features = ["panic-immediate-abort"] + +[package] +name = "teletraan" +version = "0.1.0" +edition = "2024" + +[dependencies] +tiny_http = "0.12" +flate2 = { version = "1", default-features = false, features = ["rust_backend"] } + +[profile.release] +lto = true +codegen-units = 1 +strip = true +panic = "immediate-abort" +opt-level = "z" \ No newline at end of file