pty design + probe test

This commit is contained in:
lda
2026-07-15 06:26:17 +07:00 Verified
parent 8a93250781
commit 4ecef8da38
8 changed files with 278 additions and 5 deletions
+8 -5
View File
@@ -5,12 +5,12 @@ edition = "2024"
publish = ["gitea"]
[dependencies]
anyhow = "1"
anyhow = { workspace = true }
futures = "0"
macaddr = { version = "1", features = ["serde", "serde_std"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
tokio = { version = "1", features = ["fs", "net", "rt", "sync"] }
macaddr = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
tokio = { workspace = true, features = ["net", "sync"] }
wakey-core = { path = "../wakey-core", registry = "gitea", version = "0"}
[dev-dependencies]
@@ -21,3 +21,6 @@ path = "../ipjs"
registry = "gitea"
version = "0"
features = ["experimental-nl"]
[target.'cfg(unix)'.dependencies]
pty-process = { version = "0.5", features = ["async"] }