You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by tu...@apache.org on 2022/11/29 13:56:36 UTC

[arrow-rs] branch master updated: Update prost-build requirement from =0.11.2 to =0.11.3 (#3225)

This is an automated email from the ASF dual-hosted git repository.

tustvold pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow-rs.git


The following commit(s) were added to refs/heads/master by this push:
     new bdfe0fdeb Update prost-build requirement from =0.11.2 to =0.11.3 (#3225)
bdfe0fdeb is described below

commit bdfe0fdeb127c99ef918af779a3b8404e91e41b1
Author: dependabot[bot] <49...@users.noreply.github.com>
AuthorDate: Tue Nov 29 13:56:30 2022 +0000

    Update prost-build requirement from =0.11.2 to =0.11.3 (#3225)
    
    Updates the requirements on [prost-build](https://github.com/tokio-rs/prost) to permit the latest version.
    - [Release notes](https://github.com/tokio-rs/prost/releases)
    - [Commits](https://github.com/tokio-rs/prost/compare/v0.11.2...v0.11.3)
    
    ---
    updated-dependencies:
    - dependency-name: prost-build
      dependency-type: direct:production
    ...
    
    Signed-off-by: dependabot[bot] <su...@github.com>
    
    Signed-off-by: dependabot[bot] <su...@github.com>
    Co-authored-by: dependabot[bot] <49...@users.noreply.github.com>
---
 arrow-flight/Cargo.toml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arrow-flight/Cargo.toml b/arrow-flight/Cargo.toml
index 0e09953e7..bf62a0dcd 100644
--- a/arrow-flight/Cargo.toml
+++ b/arrow-flight/Cargo.toml
@@ -50,7 +50,7 @@ flight-sql-experimental = ["prost-types"]
 # Pin specific version of the tonic-build dependencies to avoid auto-generated
 # (and checked in) arrow.flight.protocol.rs from changing
 proc-macro2 = { version = "=1.0.47", default-features = false }
-prost-build = { version = "=0.11.2", default-features = false }
+prost-build = { version = "=0.11.3", default-features = false }
 tonic-build = { version = "=0.8.3", default-features = false, features = ["transport", "prost"] }
 
 [[example]]