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

18
clientmem/Cargo.toml Normal file
View file

@ -0,0 +1,18 @@
[package]
name = "jay-clientmem"
version = "0.1.0"
edition = "2024"
license = "GPL-3.0-only"
[dependencies]
jay-cpu-worker = { version = "0.1.0", path = "../cpu-worker" }
jay-gfx-types = { version = "0.1.0", path = "../gfx-types" }
jay-tracy = { version = "0.1.0", path = "../tracy" }
jay-utils = { version = "0.1.0", path = "../utils" }
log = "0.4.20"
thiserror = "2.0.11"
uapi = "0.2.13"
[features]
tracy = ["jay-tracy/tracy"]