mirror of
https://framagit.org/almet/jardiflore.git
synced 2025-04-28 12:02:37 +02:00
Reduce the compilation time by so much
This commit is contained in:
parent
5295ca0c96
commit
7dd93ab825
1 changed files with 10 additions and 3 deletions
13
Cargo.toml
13
Cargo.toml
|
@ -10,11 +10,18 @@ path = "main.rs"
|
||||||
[dependencies]
|
[dependencies]
|
||||||
ab_glyph = "0.2.29"
|
ab_glyph = "0.2.29"
|
||||||
calamine = "0.26.1"
|
calamine = "0.26.1"
|
||||||
chrono = "0.4.40"
|
|
||||||
image = "0.25.6"
|
image = "0.25.6"
|
||||||
imageproc = "0.25.0"
|
imageproc = "0.25.0"
|
||||||
printpdf = { version = "0.8.2", features = ["png"] }
|
printpdf = { version = "0.8.2", features = ["png"] }
|
||||||
serde = "1.0.217"
|
serde = "1.0.217"
|
||||||
small_uid = "0.2.4"
|
|
||||||
structopt = "0.3.26"
|
structopt = "0.3.26"
|
||||||
tempfile = "3.19.1"
|
|
||||||
|
[profile.dev]
|
||||||
|
opt-level = 1
|
||||||
|
[profile.dev.package."*"]
|
||||||
|
opt-level = 3
|
||||||
|
|
||||||
|
|
||||||
|
[target.x86_64-unknown-linux-gnu]
|
||||||
|
linker = "clang"
|
||||||
|
rustflags = ["-C", "link-arg=-fuse-ld=/usr/bin/mold"]
|
||||||
|
|
Loading…
Reference in a new issue