tasks initial impl (still working on task_on trait method)

This commit is contained in:
2026-01-03 16:26:23 -05:00
parent 5da1e9e767
commit 59901b6580
13 changed files with 231 additions and 26 deletions

View File

@@ -1,6 +1,5 @@
[package]
name = "iris"
default-run = "test"
version.workspace = true
edition.workspace = true
@@ -16,6 +15,10 @@ arboard = { workspace = true, features = ["wayland-data-control"] }
pollster = { workspace = true }
wgpu = { workspace = true }
image = { workspace = true }
tokio = { workspace = true, features = ["sync", "rt", "rt-multi-thread"] }
[dev-dependencies]
tokio = { workspace = true, features = ["sync", "rt", "rt-multi-thread", "time"] }
[workspace]
members = ["core", "macro"]
@@ -36,3 +39,4 @@ fxhash = "0.2.1"
arboard = "3.6.1"
iris-core = { path = "core" }
iris-macro = { path = "macro" }
tokio = "1.49.0"