Rewrite to rust

This commit is contained in:
2023-08-09 23:57:16 +02:00
parent 5b38e731b2
commit a73ba00075
14 changed files with 2246 additions and 1277 deletions

22
Cargo.toml Normal file
View File

@@ -0,0 +1,22 @@
[package]
name = "fb2converter_server"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
tokio = { version = "1.28.2", features = ["full"] }
tokio-util = { version = "0.7.8", features = ["compat", "io"] }
axum = { version = "0.6.18", features = ["multipart"] }
axum-prometheus = "0.4.0"
tracing = "0.1.37"
tracing-subscriber = { version = "0.3.17", features = ["env-filter"]}
tower-http = { version = "0.4.3", features = ["trace"] }
sentry = "0.31.5"
async-tempfile = "0.4.0"
uuid = "1.4.1"