1
0
Fork 0
forked from wry/wry

eventfd: move cache into workspace crate

This commit is contained in:
kossLAN 2026-05-29 11:14:42 -04:00
parent 89dc6c91cf
commit aa70204881
No known key found for this signature in database
6 changed files with 191 additions and 162 deletions

14
eventfd-cache/Cargo.toml Normal file
View file

@ -0,0 +1,14 @@
[package]
name = "jay-eventfd-cache"
version = "0.1.0"
edition = "2024"
license = "GPL-3.0-only"
[dependencies]
jay-async-engine = { version = "0.1.0", path = "../async-engine" }
jay-io-uring = { version = "0.1.0", path = "../io-uring" }
jay-utils = { version = "0.1.0", path = "../utils" }
log = { version = "0.4.20", features = ["std"] }
thiserror = "2.0.11"
uapi = "0.2.13"