diff options
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 13 |
1 files changed, 12 insertions, 1 deletions
@@ -2,6 +2,17 @@ name = "linea_caliente" version = "0.1.0" edition = "2021" +license = "AGPL-3.0-or-later" +description = "A hotline protocol library" +homepage = "https://r.bdr.sh/hotline.html" +authors = ["Rubén Beltrán del Río <linea_caliente@r.bdr.sh>"] [dependencies] -thiserror = "2.0.11" + +[profile.release] +strip = true +lto = true +panic = "abort" + +[lints.clippy] +pedantic = "warn" |