Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
150 changes: 115 additions & 35 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,18 +12,18 @@ rust-version = "1.90"
repository = "https://github.com/tuna-os/spindle"

[workspace.dependencies]
argon2 = "0.5"
argon2 = "0.6"
axum = "0.8"
form_urlencoded = "1"
reqwest = { version = "0.12", default-features = false, features = ["rustls-tls-native-roots", "gzip", "stream"] }
axum-server = { version = "0.8", default-features = false, features = ["tls-rustls-no-provider"] }
rustls = { version = "0.23", default-features = false, features = ["ring", "logging", "std", "tls12"] }
sha2 = "0.10"
sha2 = "0.11"
# TURN's REST credential scheme is specified as HMAC-SHA1 and coturn
# implements exactly that, so this is interoperability rather than a choice:
# a SHA-256 digest here would authenticate against nothing.
sha1 = "0.10"
hmac = "0.12"
sha1 = "0.11"
hmac = "0.13"
blake3 = "1.8"
# Thumbnails only. Default features off and codecs named, because the default
# set drags in every format the crate knows -- each decoder is attack surface
Expand Down
Loading