summaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authorOwen Jacobson <owen@grimoire.ca>2025-02-18 23:09:23 -0500
committerOwen Jacobson <owen@grimoire.ca>2025-02-18 23:12:47 -0500
commitae59726ae2c7c2f05cb10c23ec29451cfaef2d90 (patch)
treedfe463328b87abfaf9b8406a8d1b7f981979c756 /Cargo.toml
parente2b56292e1c3575049996327e06302f8bca555cf (diff)
Mass-upgrade Rust dependencies
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml26
1 files changed, 13 insertions, 13 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 371ade5..aa0583f 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -23,15 +23,15 @@ assets = [
[dependencies]
argon2 = "0.5.3"
-async-trait = "0.1.83"
-axum = { version = "0.7.7", features = ["form"] }
-axum-extra = { version = "0.9.4", features = ["cookie", "query", "typed-header"] }
-chrono = { version = "0.4.38", features = ["serde"] }
-clap = { version = "4.5.20", features = ["derive", "env"] }
+async-trait = "0.1.86"
+axum = { version = "0.7.9", features = ["form"] }
+axum-extra = { version = "0.9.6", features = ["cookie", "query", "typed-header"] }
+chrono = { version = "0.4.39", features = ["serde"] }
+clap = { version = "4.5.30", features = ["derive", "env"] }
futures = "0.3.31"
headers = "0.4.0"
hex-literal = "0.4.1"
-itertools = "0.13.0"
+itertools = "0.14.0"
mime = "0.3.17"
password-hash = { version = "0.5.0", features = ["std"] }
rand = "0.8.5"
@@ -40,21 +40,21 @@ rand_core = { version = "0.6.4", features = ["getrandom"] }
# <https://docs.rs/sqlx/latest/sqlx/sqlite/index.html>
rusqlite = { version = "=0.32.1", features = ["backup"] }
rust-embed = "8.5.0"
-serde = { version = "1.0.214", features = ["derive"] }
-serde_json = "1.0.132"
+serde = { version = "1.0.217", features = ["derive"] }
+serde_json = "1.0.138"
# Pinned to maintain libsqlite3 version match between this and rusqlite. See
# also: <https://docs.rs/sqlx/latest/sqlx/sqlite/index.html>
sqlx = { version = "=0.8.2", features = ["chrono", "runtime-tokio", "sqlite"] }
-thiserror = "1.0.66"
-tokio = { version = "1.41.0", features = ["rt", "macros", "rt-multi-thread"] }
-tokio-stream = { version = "0.1.16", features = ["sync"] }
+thiserror = "1.0.69"
+tokio = { version = "1.43.0", features = ["rt", "macros", "rt-multi-thread"] }
+tokio-stream = { version = "0.1.17", features = ["sync"] }
unicode-casefold = "0.2.0"
unicode-normalization = "0.1.24"
unicode-segmentation = "1.12.0"
unix_path = "1.0.1"
-uuid = { version = "1.11.0", features = ["v4"] }
+uuid = { version = "1.13.2", features = ["v4"] }
[dev-dependencies]
faker_rand = "0.1.1"
-pin-project = "1.1.7"
+pin-project = "1.1.9"
rand = "0.8.5"