Update builder.sh

Cargo.toml: Add [profile.release]

Signed-off-by: Edu4rdSHL <edu4rdshl@protonmail.com>
This commit is contained in:
Edu4rdSHL 2022-02-13 05:48:14 -05:00
parent 17776e7b88
commit d60cc8b150
No known key found for this signature in database
GPG key ID: 3A574A4009F553E5
3 changed files with 32 additions and 2 deletions

View file

@ -1,6 +1,6 @@
[package]
name = "rusolver"
version = "0.8.0"
version = "0.9.0"
authors = ["Eduard Tolosa <edu4rdshl@protonmail.com>"]
edition = "2018"
description = "Fast DNS resolver written in Rust."
@ -18,3 +18,11 @@ trust-dns-resolver = "0.20.4"
# trust-dns-resolver = { git = "https://github.com/Edu4rdSHL/trust-dns", branch = "main" }
clap = "2.33.4"
rand = "0.8.4"
[profile.release]
lto = true
codegen-units = 1
panic = 'abort'
incremental = false
opt-level = "s"