Files
neowatch/Cargo.toml
2020-04-18 13:32:09 +02:00

43 lines
649 B
TOML

[package]
name = "neowatch"
version = "0.1.0"
authors = ["Joakim Hulthe <joakim@hulthe.net>"]
edition = "2018"
[profile.dev]
panic = "abort"
lto = false
[profile.release]
panic = "abort"
lto = false
[dependencies]
cortex-m = "~0.6"
cortex-m-rt = "~0.6"
nb = "~0.1"
#ssd1306 = "~0.2"
ssd1351 = "~0.2"
embedded-graphics = "^0.4.0"
embedded-hal = "=0.2.3"
[dependencies.itsybitsy_m0]
version = "~0.7"
git = "https://github.com/atsamd-rs/atsamd"
features = [
"rt",
"unproven",
]
[dependencies.atsamd-hal]
version = "~0.8"
git = "https://github.com/atsamd-rs/atsamd"
features = [
"atsamd21g18a",
"samd21g18a",
"samd21g18a-rt",
"unproven",
]