Skip to content
This repository has been archived by the owner on Dec 6, 2021. It is now read-only.

Commit

Permalink
optimize for size by default
Browse files Browse the repository at this point in the history
  • Loading branch information
robamu committed Nov 6, 2021
1 parent 1e1b7f3 commit a463332
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,13 @@ embedded-hal = { features = ["unproven"], version = "0.2.6" }
version = "0.1"

[features]
rt = ["va108xx/rt"]
rt = ["va108xx/rt"]

[profile.dev]
debug = true
lto = true

[profile.release]
lto = true
debug = true
opt-level = "s"

0 comments on commit a463332

Please sign in to comment.