mirror of
https://github.com/atuinsh/atuin.git
synced 2025-12-14 20:35:55 +01:00
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>
25 lines
708 B
TOML
25 lines
708 B
TOML
[package]
|
|
name = "atuin-server-postgres"
|
|
edition = "2024"
|
|
description = "server postgres database library for atuin"
|
|
|
|
version = { workspace = true }
|
|
authors = { workspace = true }
|
|
license = { workspace = true }
|
|
homepage = { workspace = true }
|
|
repository = { workspace = true }
|
|
|
|
[dependencies]
|
|
atuin-common = { path = "../atuin-common", version = "18.10.0" }
|
|
atuin-server-database = { path = "../atuin-server-database", version = "18.10.0" }
|
|
|
|
eyre = { workspace = true }
|
|
tracing = { workspace = true }
|
|
time = { workspace = true }
|
|
serde = { workspace = true }
|
|
sqlx = { workspace = true }
|
|
async-trait = { workspace = true }
|
|
uuid = { workspace = true }
|
|
metrics = "0.24"
|
|
futures-util = "0.3"
|
|
rand.workspace = true |