fomu-workshop/riscv-rust-blink/Cargo.toml

27 lines
618 B
TOML
Raw Normal View History

2019-12-29 23:10:26 +00:00
[package]
name = "riscv-rust-blink"
version = "0.1.0"
authors = ["Tiwalun <dominik.boehi@gmail.com>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
fomu-pac = "0.0.1"
2020-01-01 22:02:27 +00:00
fomu-rt = "0.0.3"
2019-12-29 23:10:26 +00:00
panic-halt = "0.2"
[profile.release]
# Keep debug information for release builds, for easier debugging.
# It will be removed during the conversion to the .dfu file.
debug = true
# Improve code generation
lto = true
codegen-units = 1
2020-01-01 22:02:27 +00:00
[patch.crates-io]
fomu-rt = { git = "https://github.com/Tiwalun/fomu-rt", branch = "fix-flash-start-addr" }