In debug mode only (release is still fine):
cargo run -p gallery
# or
cargo run -p tailor-app
Both commands create an app, which feels very slow and sluggish to run.
Suggestion:
Add a slightly optimization in Cargo.toml
[profile.dev.package."*"]
opt-level = 2
^ I can confirm it builds still fast and runs smoothly then.
In debug mode only (release is still fine):
Both commands create an app, which feels very slow and sluggish to run.
Suggestion:
Add a slightly optimization in
Cargo.toml[profile.dev.package."*"] opt-level = 2^ I can confirm it builds still fast and runs smoothly then.