mirror of
https://github.com/Noratrieb/uptime.git
synced 2026-01-14 16:45:06 +01:00
optimize dependencies
This commit is contained in:
parent
f12b6ffa59
commit
ef0de0124a
2 changed files with 22 additions and 52 deletions
25
Cargo.toml
25
Cargo.toml
|
|
@ -6,16 +6,31 @@ edition = "2021"
|
|||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
[dependencies]
|
||||
askama = "0.12.0"
|
||||
axum = "0.6.20"
|
||||
askama = { version = "0.12.0", default-features = false }
|
||||
axum = { version = "0.6.20", default-features = false, features = [
|
||||
"tokio",
|
||||
"http1",
|
||||
"http2",
|
||||
"tower-log",
|
||||
"tracing",
|
||||
] }
|
||||
chrono = "0.4.27"
|
||||
eyre = "0.6.8"
|
||||
http = "0.2.9"
|
||||
reqwest = { version = "0.11.20", default-features = false, features = ["rustls-tls", "trust-dns"] }
|
||||
reqwest = { version = "0.11.20", default-features = false, features = [
|
||||
"rustls-tls",
|
||||
"trust-dns",
|
||||
] }
|
||||
serde = { version = "1.0.188", features = ["derive"] }
|
||||
serde_json = "1.0.105"
|
||||
sqlx = { version = "0.7.1", default-features = false, features = ["migrate", "sqlite", "macros", "chrono", "runtime-tokio"] }
|
||||
tokio = { version = "1.32.0", features = ["full"] }
|
||||
sqlx = { version = "0.7.1", default-features = false, features = [
|
||||
"migrate",
|
||||
"sqlite",
|
||||
"macros",
|
||||
"chrono",
|
||||
"runtime-tokio",
|
||||
] }
|
||||
tokio = { version = "1.32.0", features = ["rt", "macros"] }
|
||||
tracing = "0.1.37"
|
||||
tracing-subscriber = "0.3.17"
|
||||
url = { version = "2.4.1", features = ["serde"] }
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue