skate/Cargo.toml
Drew Galbraith 312a5866f7 Move tool executor behind tarpc. (#12)
Implement tool executor as a separate tarpc service to improve isolation and create sandboxing opportunities.

Reviewed-on: #12
Co-authored-by: Drew Galbraith <drew@tiramisu.one>
Co-committed-by: Drew Galbraith <drew@tiramisu.one>
2026-03-14 22:08:05 +00:00

24 lines
602 B
TOML

[package]
name = "skate"
version = "0.1.0"
edition = "2024"
[dependencies]
anyhow = "1"
ratatui = "0.30"
crossterm = { version = "0.29", features = ["event-stream"] }
tokio = { version = "1", features = ["full"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
thiserror = "2"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
reqwest = { version = "0.13", features = ["stream", "json"] }
futures = "0.3"
async-trait = "0.1"
similar = "2"
landlock = "0.4"
tarpc = { version = "0.34", features = ["tokio1"] }
[dev-dependencies]
tempfile = "3.26.0"