mirror of
https://github.com/flibusta-apps/books_downloader.git
synced 2025-12-06 15:05:37 +01:00
This commit is contained in:
648
Cargo.lock
generated
648
Cargo.lock
generated
File diff suppressed because it is too large
Load Diff
32
Cargo.toml
32
Cargo.toml
@@ -6,27 +6,27 @@ edition = "2021"
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
[dependencies]
|
||||
tokio = { version = "1.37.0", features = ["full"] }
|
||||
tokio-util = { version = "0.7.10", features = ["compat"] }
|
||||
tokio = { version = "1.40.0", features = ["full"] }
|
||||
tokio-util = { version = "0.7.12", features = ["compat"] }
|
||||
futures = "0.3.30"
|
||||
reqwest = { version = "0.12.4", features = ["json", "stream", "multipart"] }
|
||||
reqwest = { version = "0.12.8", features = ["json", "stream", "multipart"] }
|
||||
|
||||
tracing = "0.1.40"
|
||||
tracing-subscriber = { version = "0.3.18", features = ["env-filter"]}
|
||||
sentry-tracing = "0.32.3"
|
||||
tower-http = { version = "0.5.2", features = ["trace"] }
|
||||
sentry-tracing = "0.34.0"
|
||||
tower-http = { version = "0.6.1", features = ["trace"] }
|
||||
|
||||
once_cell = "1.19.0"
|
||||
once_cell = "1.20.1"
|
||||
|
||||
serde = { version = "1.0.198", features = ["derive"] }
|
||||
serde_json = "1.0.116"
|
||||
axum = "0.7.5"
|
||||
serde = { version = "1.0.210", features = ["derive"] }
|
||||
serde_json = "1.0.128"
|
||||
axum = "0.7.7"
|
||||
translit = "0.5.0"
|
||||
zip = "1.1.1"
|
||||
tempfile = "3.10.1"
|
||||
bytes = "1.6.0"
|
||||
axum-prometheus = "0.6.1"
|
||||
base64 = "0.22.0"
|
||||
zip = "2.2.0"
|
||||
tempfile = "3.13.0"
|
||||
bytes = "1.7.2"
|
||||
axum-prometheus = "0.7.0"
|
||||
base64 = "0.22.1"
|
||||
|
||||
sentry = { version = "0.32.3", features = ["debug-images"] }
|
||||
dotenv = "0.15.0"
|
||||
sentry = { version = "0.34.0", features = ["debug-images"] }
|
||||
dotenvy = "0.15.0"
|
||||
|
||||
@@ -2,7 +2,7 @@ pub mod config;
|
||||
pub mod services;
|
||||
pub mod views;
|
||||
|
||||
use dotenv::dotenv;
|
||||
use dotenvy::dotenv;
|
||||
|
||||
use sentry::{integrations::debug_images::DebugImagesIntegration, types::Dsn, ClientOptions};
|
||||
use sentry_tracing::EventFilter;
|
||||
|
||||
Reference in New Issue
Block a user