need faster compile times, and smaller binaries
This commit is contained in:
parent
a583f7a0ed
commit
942c7d89aa
1 changed files with 9 additions and 3 deletions
12
Cargo.toml
12
Cargo.toml
|
@ -12,11 +12,17 @@ mdka = "1.2.10" #Not Sure if this is useful...
|
|||
rusqlite = {version=">=0.34",features=['bundled']}
|
||||
html2md = "0.2"
|
||||
regex = "1"
|
||||
directories-next = "2.0.0"
|
||||
directories = "6.0.0"
|
||||
chrono = "0.4.41"
|
||||
|
||||
[profile.dev]
|
||||
opt-level = 3
|
||||
debug=true
|
||||
incremental = true
|
||||
codegen-units = 256
|
||||
|
||||
[profile.release]
|
||||
opt-level = 3
|
||||
opt-level = "z"
|
||||
lto = true
|
||||
codegen-units = 1
|
||||
panic = "abort"
|
||||
strip=true
|
||||
|
|
Loading…
Reference in a new issue