12 lines
303 B
TOML
12 lines
303 B
TOML
[package]
|
|
name = "video-process-backend"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
axum = "0.8"
|
|
http = "1"
|
|
tokio = { version = "1", features = ["fs", "macros", "net", "rt-multi-thread"] }
|
|
tokio-util = { version = "0.7", features = ["io"] }
|
|
tower-http = { version = "0.6", features = ["cors"] }
|