feat: add rust browser terminal prototype

This commit is contained in:
zhangheng
2026-06-08 16:34:13 +08:00
commit fd056ce502
43 changed files with 10312 additions and 0 deletions

20
server/Cargo.toml Normal file
View File

@@ -0,0 +1,20 @@
[package]
name = "server"
version = "0.1.0"
edition = "2024"
[dependencies]
app = { path = "../app", default-features = false, features = ["ssr"] }
app_config.workspace = true
axum.workspace = true
futures-util.workspace = true
leptos = { workspace = true, features = ["ssr"] }
leptos_axum.workspace = true
portable-pty.workspace = true
serde_json.workspace = true
tokio.workspace = true
tower.workspace = true
tower-http.workspace = true
tracing.workspace = true
tracing-subscriber.workspace = true
dotenvy = "0.15"