some semblance of socket support

This commit is contained in:
Qyriad 2026-03-19 12:36:46 +01:00
parent 470fe05b76
commit 398fccc5d0
7 changed files with 271 additions and 28 deletions

View file

@ -27,13 +27,16 @@ bstr = "1.12.1"
circular-buffer = "1.2.0"
clap = { version = "4.5.54", features = ["color", "derive"] }
command-error = "0.8.0"
const-str = "1.1.0"
displaydoc = "0.2.5"
fs-err = "3.2.2"
itertools = "0.14.0"
libc = { version = "0.2.180", features = ["extra_traits"] }
mio = { version = "1.1.1", features = ["os-ext", "os-poll"] }
#macro_rules_attribute = { version = "0.2.2", features = ["better-docs", "verbose-expansions"] }
mio = { version = "1.1.1", features = ["os-ext", "os-poll", "net"] }
regex = { version = "1.12.3", optional = true }
regex-lite = { version = "0.1.9", optional = true }
rustix = { version = "1.1.4", features = ["event", "fs", "termios"] }
rustix = { version = "1.1.4", features = ["event", "fs", "net", "process", "termios"] }
serde = { version = "1.0.228", features = ["derive", "rc"] }
serde_json = "1.0.149"
sync-fd = "0.1.0"