Update to explain what I needed to go to make this compile due to conflict in crates.io versions of embassy and picoserve
This commit is contained in:
parent
7ef2f97bff
commit
76329ee8ae
2 changed files with 27 additions and 1 deletions
|
|
@ -7,9 +7,12 @@ version = "0.1.0"
|
|||
license = "MIT OR Apache-2.0"
|
||||
|
||||
[dependencies]
|
||||
# web server
|
||||
# web server - note local copy used as needed to change Cargo.toml to use embassy git sources
|
||||
picoserve = { version = "0.15.0", path = "../picoserve/picoserve/", features = ["embassy"] }
|
||||
|
||||
# library for talking to the SCD40 module
|
||||
libscd = { version = "0.5.0", git = "https://github.com/SvetlinZarev/libscd.git", features = ["async", "sync", "scd4x", "defmt"] }
|
||||
|
||||
embassy-embedded-hal = { version = "0.3.0", git = "https://github.com/embassy-rs/embassy.git", features = ["defmt"] }
|
||||
embassy-sync = { version = "0.6.2", git = "https://github.com/embassy-rs/embassy.git", features = ["defmt"] }
|
||||
embassy-executor = { version = "0.7.0", git = "https://github.com/embassy-rs/embassy.git", features = ["task-arena-size-98304", "arch-cortex-m", "executor-thread", "executor-interrupt", "defmt"] }
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue