From fbbb72a9317ca053f4075ec23072a5c0eafbc08a Mon Sep 17 00:00:00 2001 From: Cristian Le Date: Tue, 24 Feb 2026 20:35:30 +0100 Subject: chore(deps): Bump prost-related crates (#3203) Bumping the prost related crates and avoiding as much compat packages as possible. There's still the axum0.7 compat which is introduced with this change, but the update to get rid of that seems more involved ## Checks - [x] I am happy for maintainers to push small adjustments to this PR, to speed up the review cycle - [x] I have checked that there are no existing pull requests for the same thing (https://github.com/atuinsh/atuin/pull/2896) --- crates/atuin-daemon/Cargo.toml | 14 ++++++++------ crates/atuin-daemon/build.rs | 2 +- 2 files changed, 9 insertions(+), 7 deletions(-) (limited to 'crates') diff --git a/crates/atuin-daemon/Cargo.toml b/crates/atuin-daemon/Cargo.toml index a3cf8b0c..36917789 100644 --- a/crates/atuin-daemon/Cargo.toml +++ b/crates/atuin-daemon/Cargo.toml @@ -27,10 +27,11 @@ tracing = { workspace = true } tracing-subscriber = { workspace = true } dashmap = "5.5.3" -tonic-types = "0.12.0" -tonic = "0.12" -prost = "0.13" -prost-types = "0.13" +tonic-types = "0.14" +tonic = "0.14" +tonic-prost = "0.14" +prost = "0.14" +prost-types = "0.14" tokio-stream = {version="0.1.14", features=["net"]} hyper-util = "0.1" @@ -44,5 +45,6 @@ tempfile = { workspace = true } atuin-common = { path = "../atuin-common", version = "18.13.0-beta.1" } [build-dependencies] -protox = "0.8.0" -tonic-build = "0.12" +protox = "0.9" +tonic-build = "0.14" +tonic-prost-build = "0.14" diff --git a/crates/atuin-daemon/build.rs b/crates/atuin-daemon/build.rs index 767a4a12..fbe34d12 100644 --- a/crates/atuin-daemon/build.rs +++ b/crates/atuin-daemon/build.rs @@ -12,7 +12,7 @@ fn main() -> std::io::Result<()> { .join("file_descriptor_set.bin"); fs::write(&file_descriptor_path, file_descriptors.encode_to_vec()).unwrap(); - tonic_build::configure() + tonic_prost_build::configure() .build_server(true) .file_descriptor_set_path(&file_descriptor_path) .skip_protoc_run() -- cgit v1.3.1