diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..ead9c5d --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,16 @@ +[package] +name = "tomcat" +version = "0.0.1" +edition = "2021" +license = "AGPL-3.0-or-later" +authors = [ "Emma Tebibyte " ] + +[dependencies] +toml = "0.5.9" + +[profile.release] +strip = true # strip symbols from the binary +opt-level = "z" # optimize for size +lto = true # link time optimization +codegen-units = 1 # decrease parallelization +panic = "abort"