aboutsummaryrefslogtreecommitdiffstats
path: root/crates/atuin-server/Cargo.toml
diff options
context:
space:
mode:
authorCristian Le <git@lecris.dev>2025-11-18 05:04:24 +0100
committerGitHub <noreply@github.com>2025-11-17 20:04:24 -0800
commite33b3de2536d3d9c71869c407de11f88a16f6b9b (patch)
tree38c45ac3025a3148bbdab953634f9e96f386e80e /crates/atuin-server/Cargo.toml
parentbuild(nix): update rust toolchain hash (#2990) (diff)
downloadatuin-e33b3de2536d3d9c71869c407de11f88a16f6b9b.zip
chore(deps): Update some packages realated to ring and aws-lc (#2991)
After `aws-lc-rs 0.15` it seems the illumos issue is resolved, so reviving the `metrics` et.al. update PR, specifically: - Update `metrics` to 0.24 and `metrics-exporter-prometheus` to 0.17 - Drop the `ring` feature from `rustls` - Update `reqwest` to 0.12 (dropping `rustls 0.21` from the lock file) There still seem to be `ring` dependencies, but not sure if these can be dropped --------- Co-authored-by: Helmut K. C. Tessarek <tessarek@evermeet.cx>
Diffstat (limited to 'crates/atuin-server/Cargo.toml')
-rw-r--r--crates/atuin-server/Cargo.toml8
1 files changed, 4 insertions, 4 deletions
diff --git a/crates/atuin-server/Cargo.toml b/crates/atuin-server/Cargo.toml
index ad94c379..414ffcf0 100644
--- a/crates/atuin-server/Cargo.toml
+++ b/crates/atuin-server/Cargo.toml
@@ -24,14 +24,14 @@ rand = { workspace = true }
tokio = { workspace = true }
async-trait = { workspace = true }
axum = "0.7"
-axum-server = { version = "0.7", features = ["tls-rustls-no-provider"] }
+axum-server = { version = "0.7", features = ["tls-rustls"] }
fs-err = { workspace = true }
tower = { workspace = true }
tower-http = { version = "0.6", features = ["trace"] }
reqwest = { workspace = true }
-rustls = { version = "0.23", features = ["ring"], default-features = false }
+rustls = { version = "0.23"}
argon2 = "0.5"
semver = { workspace = true }
-metrics-exporter-prometheus = "0.12.1"
-metrics = "0.21.1"
+metrics-exporter-prometheus = "0.17"
+metrics = "0.24"
postmark = {version= "0.11", features=["reqwest", "reqwest-rustls-tls"]}