Update most dependencies
This commit is contained in:
parent
42d551eb6e
commit
6029f44c67
3 changed files with 510 additions and 472 deletions
51
Cargo.toml
51
Cargo.toml
|
|
@ -4,39 +4,36 @@ version = "0.0.0"
|
|||
edition = "2021"
|
||||
|
||||
[dependencies]
|
||||
anyhow = "1.0.75"
|
||||
anyhow = "1.0.83"
|
||||
askama = { version = "0.12.1", features = ["with-axum"] }
|
||||
askama_axum = "0.4.0"
|
||||
axum = { version = "0.7.5", features = ["macros"] }
|
||||
axum-extra = { version = "0.9.3", features = [
|
||||
"query",
|
||||
"typed-routing",
|
||||
"typed-header",
|
||||
] }
|
||||
bytes = "1.5.0"
|
||||
clap = { version = "4.4.6", features = ["derive", "deprecated"] }
|
||||
axum-extra = { version = "0.9.3", features = ["query", "typed-routing", "typed-header"] }
|
||||
bytes = "1.6.0"
|
||||
clap = { version = "4.5.4", features = ["derive", "deprecated"] }
|
||||
directories = "5.0.1"
|
||||
env_logger = "0.10.0"
|
||||
flate2 = "1.0.28"
|
||||
futures = "0.3.28"
|
||||
flate2 = "1.0.30"
|
||||
futures = "0.3.30"
|
||||
gethostname = "0.4.3"
|
||||
humantime = "2.1.0"
|
||||
log = "0.4.20"
|
||||
log = "0.4.21"
|
||||
mime_guess = "2.0.4"
|
||||
open = "5.0.0"
|
||||
open = "5.1.2"
|
||||
rand = "0.8.5"
|
||||
regex = "1.10.2"
|
||||
rust-embed = { version = "8.0.0", features = ["interpolate-folder-path"] }
|
||||
serde = { version = "1.0.189", features = ["derive"] }
|
||||
regex = "1.10.4"
|
||||
rust-embed = { version = "8.4.0", features = ["interpolate-folder-path"] }
|
||||
serde = { version = "1.0.201", features = ["derive"] }
|
||||
serde-humanize-rs = "0.1.1"
|
||||
serde_repr = "0.1.16"
|
||||
sqlx = { version = "0.7.2", features = ["runtime-tokio", "sqlite", "time"] }
|
||||
serde_repr = "0.1.19"
|
||||
sqlx = { version = "0.7.4", features = ["runtime-tokio", "sqlite", "time"] }
|
||||
tar = { version = "0.4.40", default-features = false }
|
||||
tempfile = "3.8.0"
|
||||
tokio = { version = "1.33.0", features = ["full"] }
|
||||
tokio-stream = "0.1.14"
|
||||
toml = "0.8.2"
|
||||
walkdir = "2.4.0"
|
||||
tempfile = "3.10.1"
|
||||
time = { version = "0.3.36", features = ["formatting", "parsing", "macros", "serde-human-readable"] }
|
||||
tokio = { version = "1.37.0", features = ["full"] }
|
||||
tokio-stream = "0.1.15"
|
||||
toml = "0.8.12"
|
||||
walkdir = "2.5.0"
|
||||
|
||||
[dependencies.gix]
|
||||
version = "0.55.2"
|
||||
|
|
@ -44,17 +41,13 @@ default-features = false
|
|||
features = ["max-performance-safe", "revision", "worktree-stream"]
|
||||
|
||||
[dependencies.reqwest]
|
||||
version = "0.11.22"
|
||||
version = "0.12.4"
|
||||
default-features = false
|
||||
features = ["json", "stream", "rustls-tls-native-roots"]
|
||||
|
||||
[dependencies.time]
|
||||
version = "0.3.30"
|
||||
features = ["formatting", "parsing", "macros", "serde-human-readable"]
|
||||
|
||||
[build-dependencies]
|
||||
vergen = { version = "8.2.5", features = ["git", "gitcl"] }
|
||||
walkdir = "2.4.0"
|
||||
vergen = { version = "8.3.1", features = ["git", "gitcl"] }
|
||||
walkdir = "2.5.0"
|
||||
|
||||
[profile.dev.package.sqlx-macros]
|
||||
opt-level = 3
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue