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-cli/Cargo.toml
Normal file
24
crates/codegen/ptyctl-cli/Cargo.toml
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
[package]
|
||||
license = "Apache-2.0"
|
||||
name = "ptyctl-cli"
|
||||
version = "0.1.0"
|
||||
edition.workspace = true
|
||||
description = "CLI for ptyctl headless PTY controller"
|
||||
publish = false
|
||||
|
||||
[[bin]]
|
||||
name = "ptyctl"
|
||||
path = "src/main.rs"
|
||||
|
||||
[dependencies]
|
||||
ptyctl = { path = "../ptyctl" }
|
||||
axum = { workspace = true }
|
||||
clap = { workspace = true, features = ["derive"] }
|
||||
reqwest = { workspace = true, features = ["json"] }
|
||||
tokio = { workspace = true, features = ["full"] }
|
||||
serde = { workspace = true, features = ["derive"] }
|
||||
serde_json = { workspace = true }
|
||||
anyhow = { workspace = true }
|
||||
env_logger = { workspace = true }
|
||||
chrono = { workspace = true, features = ["serde"] }
|
||||
dirs = { workspace = true }
|
||||
Loading…
Reference in a new issue