|
|
@ -36,7 +36,7 @@ unstable = [] |
|
|
|
|
|
|
|
[target."cfg(not(windows))".dependencies] |
|
|
|
# Logging |
|
|
|
syslog = "6.1.0" |
|
|
|
syslog = "6.1.1" |
|
|
|
|
|
|
|
[dependencies] |
|
|
|
# Logging |
|
|
@ -60,7 +60,7 @@ rocket = { version = "0.5.0", features = ["tls", "json"], default-features = fal |
|
|
|
rocket_ws = { version ="0.1.0" } |
|
|
|
|
|
|
|
# WebSockets libraries |
|
|
|
rmpv = "1.0.1" # MessagePack library |
|
|
|
rmpv = "1.0.2" # MessagePack library |
|
|
|
|
|
|
|
# Concurrent HashMap used for WebSocket messaging and favicons |
|
|
|
dashmap = "5.5.3" |
|
|
@ -70,11 +70,11 @@ futures = "0.3.30" |
|
|
|
tokio = { version = "1.37.0", features = ["rt-multi-thread", "fs", "io-util", "parking_lot", "time", "signal"] } |
|
|
|
|
|
|
|
# A generic serialization/deserialization framework |
|
|
|
serde = { version = "1.0.197", features = ["derive"] } |
|
|
|
serde_json = "1.0.115" |
|
|
|
serde = { version = "1.0.198", features = ["derive"] } |
|
|
|
serde_json = "1.0.116" |
|
|
|
|
|
|
|
# A safe, extensible ORM and Query builder |
|
|
|
diesel = { version = "2.1.5", features = ["chrono", "r2d2", "numeric"] } |
|
|
|
diesel = { version = "2.1.6", features = ["chrono", "r2d2", "numeric"] } |
|
|
|
diesel_migrations = "2.1.0" |
|
|
|
diesel_logger = { version = "0.3.0", optional = true } |
|
|
|
|
|
|
@ -89,12 +89,12 @@ ring = "0.17.8" |
|
|
|
uuid = { version = "1.8.0", features = ["v4"] } |
|
|
|
|
|
|
|
# Date and time libraries |
|
|
|
chrono = { version = "0.4.37", features = ["clock", "serde"], default-features = false } |
|
|
|
chrono = { version = "0.4.38", features = ["clock", "serde"], default-features = false } |
|
|
|
chrono-tz = "0.9.0" |
|
|
|
time = "0.3.34" |
|
|
|
time = "0.3.36" |
|
|
|
|
|
|
|
# Job scheduler |
|
|
|
job_scheduler_ng = "2.0.4" |
|
|
|
job_scheduler_ng = "2.0.5" |
|
|
|
|
|
|
|
# Data encoding library Hex/Base32/Base64 |
|
|
|
data-encoding = "2.5.0" |
|
|
@ -115,7 +115,7 @@ webauthn-rs = "0.3.2" |
|
|
|
url = "2.5.0" |
|
|
|
|
|
|
|
# Email libraries |
|
|
|
lettre = { version = "0.11.6", features = ["smtp-transport", "sendmail-transport", "builder", "serde", "tokio1-native-tls", "hostname", "tracing", "tokio1"], default-features = false } |
|
|
|
lettre = { version = "0.11.7", features = ["smtp-transport", "sendmail-transport", "builder", "serde", "tokio1-native-tls", "hostname", "tracing", "tokio1"], default-features = false } |
|
|
|
percent-encoding = "2.3.1" # URL encoding library used for URL's in the emails |
|
|
|
email_address = "0.2.4" |
|
|
|
|
|
|
@ -123,7 +123,7 @@ email_address = "0.2.4" |
|
|
|
handlebars = { version = "5.1.2", features = ["dir_source"] } |
|
|
|
|
|
|
|
# HTTP client (Used for favicons, version check, DUO and HIBP API) |
|
|
|
reqwest = { version = "0.12.3", features = ["native-tls-alpn", "stream", "json", "gzip", "brotli", "socks", "cookies", "hickory-dns"] } |
|
|
|
reqwest = { version = "0.12.4", features = ["native-tls-alpn", "stream", "json", "gzip", "brotli", "socks", "cookies", "hickory-dns"] } |
|
|
|
|
|
|
|
# Favicon extraction libraries |
|
|
|
html5gum = "0.5.7" |
|
|
@ -132,7 +132,7 @@ data-url = "0.3.1" |
|
|
|
bytes = "1.6.0" |
|
|
|
|
|
|
|
# Cache function results (Used for version check and favicon fetching) |
|
|
|
cached = { version = "0.49.2", features = ["async"] } |
|
|
|
cached = { version = "0.50.0", features = ["async"] } |
|
|
|
|
|
|
|
# Used for custom short lived cookie jar during favicon extraction |
|
|
|
cookie = "0.18.1" |
|
|
@ -153,7 +153,7 @@ semver = "1.0.22" |
|
|
|
|
|
|
|
# Allow overriding the default memory allocator |
|
|
|
# Mainly used for the musl builds, since the default musl malloc is very slow |
|
|
|
mimalloc = { version = "0.1.39", features = ["secure"], default-features = false, optional = true } |
|
|
|
mimalloc = { version = "0.1.41", features = ["secure"], default-features = false, optional = true } |
|
|
|
which = "6.0.1" |
|
|
|
|
|
|
|
# Argon2 library with support for the PHC format |
|
|
|