summaryrefslogtreecommitdiff
path: root/racer-tracer/Cargo.toml
diff options
context:
space:
mode:
authorSakarias Johansson <sakarias.johansson@goodbyekansas.com>2023-01-05 19:26:18 +0100
committerSakarias Johansson <sakarias.johansson@goodbyekansas.com>2023-01-05 19:26:18 +0100
commit372bc5b09c50cf2440e8f7762dd260cefd7bba7f (patch)
tree31e92013ca02c2ee2e71cdc40cd9fdc008432143 /racer-tracer/Cargo.toml
parentcf7bd1aec7e9908f80bfc014fc53a1144e17ccb5 (diff)
downloadracer-tracer-372bc5b09c50cf2440e8f7762dd260cefd7bba7f.tar.gz
racer-tracer-372bc5b09c50cf2440e8f7762dd260cefd7bba7f.tar.xz
racer-tracer-372bc5b09c50cf2440e8f7762dd260cefd7bba7f.zip
⚡ Prepare asyncness
Creating a bunch of futures that when completed get the buffers copied to the screen buffer updating the screen as it gets done. It's a bit overkill to create a future per row but it can be changed later. Moved hsv_to_rgb to utils. Don't even think it will be needed later.
Diffstat (limited to 'racer-tracer/Cargo.toml')
-rw-r--r--racer-tracer/Cargo.toml1
1 files changed, 1 insertions, 0 deletions
diff --git a/racer-tracer/Cargo.toml b/racer-tracer/Cargo.toml
index e764f79..a147cfe 100644
--- a/racer-tracer/Cargo.toml
+++ b/racer-tracer/Cargo.toml
@@ -8,3 +8,4 @@ edition = "2021"
minifb = "0.23"
tokio = { version = "1.14.0", features = ["macros", "rt", "rt-multi-thread"] }
thiserror = "1"
+futures = "0.3"