-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: spawn generators to remove time skew (#272)
* chore: clean out unnecessary `device_id` * style: spawn to improve readability * fix: print send errors * fix: `ActionResponse` against uplink
- Loading branch information
Devdutt Shenoi
authored
Aug 22, 2023
1 parent
b654caa
commit 67dff9f
Showing
4 changed files
with
462 additions
and
539 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -6,6 +6,7 @@ authors = ["Devdutt Shenoi <[email protected]>"] | |
|
||
[dependencies] | ||
fake = { version = "2.5.0", features = ["derive"] } | ||
flume = "0.10" | ||
futures-util = "0.3" | ||
log = "0.4" | ||
rand = "0.8" | ||
|
@@ -16,5 +17,5 @@ structopt = "0.3" | |
thiserror = "1" | ||
tokio = { version = "1", features = ["full"] } | ||
tokio-stream = "0.1" | ||
tokio-util = { version = "0.7", features = ["codec", "time"] } | ||
tokio-util = { version = "0.7", features = ["codec"] } | ||
uplink = { path = "../../uplink" } |
Oops, something went wrong.