aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: 888a6eecc94e676288bcf7c6a168aedcecfb40e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
[workspace]
members = [
    "rtic",
    "rtic-sync",
    "rtic-common",
    "rtic-macros",
    "rtic-monotonics",
    "rtic-time",
    "xtask",
]

[profile.release]
codegen-units = 1
lto = true

# do not optimize proc-macro deps or build scripts
[profile.dev.build-override]
codegen-units = 16
debug = false
debug-assertions = false
opt-level = 0
overflow-checks = false


[profile.release.build-override]
codegen-units = 16
debug = false
debug-assertions = false
opt-level = 0
overflow-checks = false

[patch.crates-io]
lm3s6965 = { git = "https://github.com/japaric/lm3s6965" }