This repository was archived by the owner on Jan 9, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
use streamiterator instead of std iterator (#90)
* added streamiter dep * bump rust edition version * use streamiter trait in transport * impl streamiter for canIter * updated to streamiter * updated basic example
- Loading branch information
1 parent
872bbda
commit 5d37215
Showing
6 changed files
with
62 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
name = "uavcan" | ||
authors = ["David Lenfesty <[email protected]>"] | ||
version = "0.2.0-preview0" | ||
edition = "2018" | ||
edition = "2021" | ||
|
||
description = "Full functionality reference implementation of UAVCAN/CAN in Rust" | ||
|
||
|
@@ -23,6 +23,7 @@ bitfield = "0.13" | |
# TODO: if new embedded-hal version releases, this can be changed to crates.io | ||
embedded-hal = {version = "0.2.6", git = "https://github.com/rust-embedded/embedded-hal/", branch = "v0.2.x"} | ||
embedded-time = "0.12.0" | ||
streaming-iterator = "0.1.5" | ||
|
||
# should only in no_std, so if feature std not set - ref: https://github.com/rust-lang/cargo/issues/1839 | ||
heapless = "0.7.7" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters