Files
cortex-m-quickstart/Cargo.toml
Jorge Aparicio 7b193786d6 force a single codegen unit on the dev profile
to work around problems with several codegen units, which is now the default for unoptimized builds
2017-11-19 03:58:24 +01:00

21 lines
496 B
TOML

[package]
authors = ["Jorge Aparicio <jorge@japaric.io>"]
categories = ["embedded", "no-std"]
description = "A template for building applications for ARM Cortex-M microcontrollers"
keywords = ["arm", "cortex-m", "template"]
license = "MIT OR Apache-2.0"
name = "cortex-m-quickstart"
repository = "https://github.com/japaric/cortex-m-quickstart"
version = "0.1.9"
[dependencies]
cortex-m = "0.2.7"
cortex-m-rt = "0.2.3"
[profile.dev]
codegen-units = 1
[profile.release]
lto = true
debug = true