pounder_test/Cargo.toml

80 lines
2.1 KiB
TOML
Raw Normal View History

2019-03-18 19:56:26 +08:00
[package]
name = "stabilizer"
2020-01-21 19:48:39 +08:00
version = "0.3.0"
2019-03-18 19:56:26 +08:00
authors = ["Robert Jördens <rj@quartiq.de>"]
2019-03-31 19:33:03 +08:00
description = "Firmware for the Sinara Stabilizer board (stm32h743, eth, poe, 2 adc, 2 dac)"
categories = ["embedded", "no-std", "hardware-support", "science"]
license = "GPL-3.0-or-later"
2020-01-21 19:48:39 +08:00
keywords = ["ethernet", "stm32h7", "adc", "dac", "physics"]
2019-03-18 19:56:26 +08:00
repository = "https://github.com/quartiq/stabilizer"
2019-03-29 16:51:36 +08:00
readme = "README.md"
2019-05-28 23:38:23 +08:00
documentation = "https://docs.rs/stabilizer/"
2019-03-18 19:56:26 +08:00
edition = "2018"
2019-03-29 16:51:36 +08:00
exclude = [
".travis.yml",
".gitignore",
2019-03-29 17:36:18 +08:00
"doc/",
"doc/*"
2019-03-29 16:51:36 +08:00
]
2019-03-18 19:56:26 +08:00
[badges]
2019-03-31 19:33:03 +08:00
travis-ci = { repository = "quartiq/stabilizer", branch = "master" }
2019-03-18 19:56:26 +08:00
maintenance = { status = "experimental" }
[package.metadata.docs.rs]
features = []
default-target = "thumbv7em-none-eabihf"
[dependencies]
cortex-m = { version = "0.6", features = ["const-fn"] }
2019-03-18 19:56:26 +08:00
cortex-m-rt = { version = "0.6", features = ["device"] }
cortex-m-log = { version = "0.6", features = ["log-integration"] }
2019-03-18 19:56:26 +08:00
log = "0.4"
2019-07-16 00:00:55 +08:00
panic-semihosting = { version = "0.5", optional = true }
2020-01-21 19:45:11 +08:00
panic-halt = "0.2"
2019-05-24 00:57:00 +08:00
serde = { version = "1.0", features = ["derive"], default-features = false }
2020-01-21 19:45:11 +08:00
heapless = "0.5"
serde-json-core = "0.1"
cortex-m-rtfm = "0.5"
2020-04-19 19:37:03 +08:00
embedded-hal = "0.2.3"
nb = "0.1.2"
asm-delay = "0.7.0"
2020-06-03 23:36:43 +08:00
enum-iterator = "0.6.0"
2020-06-03 16:36:35 +08:00
[dependencies.mcp23017]
git = "https://github.com/mrd0ll4r/mcp23017.git"
[dependencies.smoltcp]
version = "0.6"
features = ["ethernet", "proto-ipv4", "socket-tcp", "proto-ipv6"]
default-features = false
[dependencies.ad9959]
git = "https://github.com/quartiq/ad9959.git"
branch = "feature/basic-driver"
[dependencies.stm32h7-ethernet]
2020-04-29 01:08:12 +08:00
git = "https://github.com/quartiq/stm32h7-ethernet.git"
2020-04-29 01:15:00 +08:00
features = ["stm32h743v"]
2020-04-19 19:37:03 +08:00
[dependencies.stm32h7xx-hal]
#git = "https://github.com/quartiq/stm32h7xx-hal.git"
#branch = "feature/quad-spi"
path = "../stm32h7xx-hal/"
2020-04-29 19:00:29 +08:00
features = ["stm32h743v", "rt", "unproven"]
2019-03-18 19:56:26 +08:00
[features]
semihosting = ["panic-semihosting", "cortex-m-log/semihosting"]
2019-03-20 05:52:48 +08:00
bkpt = [ ]
2019-10-22 21:43:49 +08:00
nightly = ["cortex-m/inline-asm"]
2019-03-18 19:56:26 +08:00
[profile.dev]
codegen-units = 1
incremental = false
opt-level = 3
2019-03-18 19:56:26 +08:00
[profile.release]
debug = true
lto = true
codegen-units = 1