Publish harness and TUI open-source
initial sync from the monorepo
This commit is contained in:
commit
c68e39f604
2734 changed files with 1437016 additions and 0 deletions
24
crates/codegen/ptyctl/Cargo.toml
Normal file
24
crates/codegen/ptyctl/Cargo.toml
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
[package]
|
||||
license = "Apache-2.0"
|
||||
name = "ptyctl"
|
||||
version = "0.1.0"
|
||||
edition.workspace = true
|
||||
description = "Headless PTY controller built on alacritty_terminal"
|
||||
publish = false
|
||||
|
||||
[dependencies]
|
||||
alacritty_terminal = { workspace = true }
|
||||
portable-pty = { workspace = true }
|
||||
terminput = { workspace = true }
|
||||
tokio = { workspace = true, features = ["full"] }
|
||||
axum = { workspace = true, features = ["ws"] }
|
||||
futures-util = { workspace = true }
|
||||
tower-http = { workspace = true, features = ["cors"] }
|
||||
serde = { workspace = true, features = ["derive"] }
|
||||
serde_json = { workspace = true }
|
||||
anyhow = { workspace = true }
|
||||
log = { workspace = true }
|
||||
regex = { workspace = true }
|
||||
|
||||
[dev-dependencies]
|
||||
tokio = { workspace = true, features = ["full", "test-util"] }
|
||||
Loading…
Reference in a new issue