Implemented snake
This commit is contained in:
parent
da5edb5cbf
commit
5ac79ce0ce
4 changed files with 223 additions and 2 deletions
23
snake/Cargo.toml
Normal file
23
snake/Cargo.toml
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
[package]
|
||||
name = "snake"
|
||||
version = "0.1.0"
|
||||
edition = "2024"
|
||||
|
||||
[[bin]]
|
||||
name = "snake"
|
||||
harness = false # do not use the built in cargo test harness -> resolve rust-analyzer errors
|
||||
|
||||
[features]
|
||||
default = []
|
||||
|
||||
experimental = ["esp-idf-svc/experimental"]
|
||||
|
||||
[dependencies]
|
||||
log = "0.4"
|
||||
esp-idf-svc = { version = "0.51", features = ["critical-section", "embassy-time-driver", "embassy-sync"] }
|
||||
cardputer-bsc = { version = "0.1.0", path = "../cardputer-bsc" }
|
||||
embedded-graphics-core = "0.4.0"
|
||||
anyhow = "1.0.98"
|
||||
|
||||
[build-dependencies]
|
||||
embuild = "0.33"
|
||||
Loading…
Add table
Add a link
Reference in a new issue