This commit is contained in:
2026-03-02 23:06:24 +01:00
parent 27a13e3084
commit c1d1fc94ba
18 changed files with 1616 additions and 2 deletions

20
backend/Cargo.toml Normal file
View File

@@ -0,0 +1,20 @@
[package]
name = "comfyui-backend"
version = "0.1.0"
edition = "2021"
[dependencies]
actix-web = { version = "4", features = ["openssl"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tokio = { version = "1", features = ["full"] }
rayon = "1.5"
uuid = { version = "1.0", features = ["v4"] }
log = "0.4"
env_logger = "0.10"
thiserror = "1.0"
regex = "1.0"
chrono = { version = "0.4", features = ["serde"] }
[dev-dependencies]
tokio-test = "0.4"