1[package] 2name = "transcoder" 3version = "0.1.0" 4edition = "2021" 5 6[dependencies] 7anyhow = "1.0" 8axum = { version = "0.7", features = ["macros", "json", "multipart"] } 9serde = { version = "1.0", features = ["derive"] } 10serde_json = "1.0" 11thiserror = "1.0" 12tokio = { version = "1.40", features = ["rt-multi-thread", "macros", "signal", "process", "fs", "io-util"] } 13tracing = "0.1" 14tracing-subscriber = { version = "0.3", features = ["env-filter", "fmt"] } 15tempfile = "3.10" 16sanitize-filename = "0.5"