release profile strips debug info, removed currently unused dependency
This commit is contained in:
parent
40cacce0be
commit
309f4326aa
1 changed files with 3 additions and 2 deletions
|
@ -7,14 +7,15 @@ edition = "2021"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
pico-args = { version = "0.5.0", features = [ "combined-flags", "eq-separator" ] }
|
pico-args = { version = "0.5.0", features = [ "combined-flags", "eq-separator" ] }
|
||||||
ratatui = { version = "0.20.1", features = [ "termion" ] }
|
#ratatui = { version = "0.20.1", features = [ "termion" ] }
|
||||||
termion = "2.0.1"
|
termion = "2.0.1"
|
||||||
tmux_interface = "0.2.1"
|
tmux_interface = "0.2.1"
|
||||||
|
|
||||||
[profile.release]
|
[profile.release]
|
||||||
opt-level = "s"
|
opt-level = 's'
|
||||||
lto = true
|
lto = true
|
||||||
debug = false
|
debug = false
|
||||||
codegen-units = 1
|
codegen-units = 1
|
||||||
panic = "abort"
|
panic = "abort"
|
||||||
|
strip = "debuginfo"
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue