2022-07-05 09:20:50 +00:00
|
|
|
[package]
|
|
|
|
name = "projector"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
axum = { version = "0.5.11", features = ["multipart"] }
|
|
|
|
color-eyre = "0.6.1"
|
|
|
|
futures = "0.3.21"
|
|
|
|
mime_guess = "2.0.4"
|
|
|
|
tempfile = "3.3.0"
|
|
|
|
tokio = { version = "1.19.2", features = ["full"] }
|
|
|
|
tokio-util = { version = "0.7.3", features = ["io"] }
|
2022-07-05 10:45:17 +00:00
|
|
|
tower-http = { version = "0.3.4", features = ["trace"] }
|
2022-07-05 09:20:50 +00:00
|
|
|
tracing = "0.1.35"
|
|
|
|
tracing-subscriber = { version = "0.3.14", features = ["env-filter"] }
|
|
|
|
zip = "0.6.2"
|