1
0
Fork 0
forked from wry/wry

clientmem: move shm mapping into workspace crate

This commit is contained in:
kossLAN 2026-05-29 11:41:55 -04:00
parent bf3859a026
commit 663cfb3ca3
No known key found for this signature in database
10 changed files with 383 additions and 338 deletions

View file

@ -45,6 +45,7 @@ members = [
"video-types",
"gfx-types",
"theme",
"clientmem",
"pango",
"libinput",
"toml-config",
@ -93,6 +94,7 @@ jay-logger = { version = "0.1.0", path = "logger" }
jay-video-types = { version = "0.1.0", path = "video-types" }
jay-gfx-types = { version = "0.1.0", path = "gfx-types" }
jay-theme = { version = "0.1.0", path = "theme" }
jay-clientmem = { version = "0.1.0", path = "clientmem" }
jay-pango = { version = "0.1.0", path = "pango" }
jay-libinput = { version = "0.1.0", path = "libinput" }
@ -158,4 +160,4 @@ opt-level = 3
[features]
rc_tracking = []
it = ["jay-async-engine/it", "jay-cpu-worker/it"]
tracy = ["jay-tracy/tracy", "jay-async-engine/tracy", "jay-cpu-worker/tracy"]
tracy = ["jay-tracy/tracy", "jay-async-engine/tracy", "jay-cpu-worker/tracy", "jay-clientmem/tracy"]