Initial commit
This commit is contained in:
40
Cargo.toml
Normal file
40
Cargo.toml
Normal file
@ -0,0 +1,40 @@
|
||||
[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"
|
||||
embedded-graphics = "^0.4.0"
|
||||
embedded-hal = "=0.2.3"
|
||||
|
||||
[dependencies.itsybitsy_m0]
|
||||
version = "~0.3"
|
||||
git = "https://github.com/atsamd-rs/atsamd"
|
||||
features = [
|
||||
"rt",
|
||||
"unproven",
|
||||
]
|
||||
|
||||
[dependencies.atsamd-hal]
|
||||
version = "~0.5"
|
||||
git = "https://github.com/atsamd-rs/atsamd"
|
||||
features = [
|
||||
"samd21g18a",
|
||||
"samd21g18a-rt",
|
||||
"unproven",
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user