1
0
Fork 0
forked from wry/wry

cpu_worker: move runtime into workspace crate

This commit is contained in:
kossLAN 2026-05-29 11:18:35 -04:00
parent 1c24ca26fe
commit 5a3b2a483b
No known key found for this signature in database
9 changed files with 566 additions and 509 deletions

View file

@ -37,6 +37,7 @@ members = [
"tree-types",
"eventfd-cache",
"wheel",
"cpu-worker",
"toml-config",
"algorithms",
"toml-spec",
@ -75,6 +76,7 @@ jay-wire-buf = { version = "0.1.0", path = "wire-buf" }
jay-tree-types = { version = "0.1.0", path = "tree-types" }
jay-eventfd-cache = { version = "0.1.0", path = "eventfd-cache" }
jay-wheel = { version = "0.1.0", path = "wheel" }
jay-cpu-worker = { version = "0.1.0", path = "cpu-worker" }
uapi = "0.2.13"
thiserror = "2.0.11"
@ -137,5 +139,5 @@ opt-level = 3
[features]
rc_tracking = []
it = ["jay-async-engine/it"]
tracy = ["jay-tracy/tracy", "jay-async-engine/tracy"]
it = ["jay-async-engine/it", "jay-cpu-worker/it"]
tracy = ["jay-tracy/tracy", "jay-async-engine/tracy", "jay-cpu-worker/tracy"]