1
0
Fork 0
forked from wry/wry

sighand: move signal handling into workspace crate

This commit is contained in:
kossLAN 2026-05-29 11:20:12 -04:00
parent 5a3b2a483b
commit c709ff997f
No known key found for this signature in database
5 changed files with 93 additions and 65 deletions

14
sighand/Cargo.toml Normal file
View file

@ -0,0 +1,14 @@
[package]
name = "jay-sighand"
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"