Skip to content

Commit

Permalink
build: update prost-build dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
wackywendell committed Oct 28, 2024
1 parent 5f6b8fc commit 4388985
Show file tree
Hide file tree
Showing 3 changed files with 86 additions and 23 deletions.
105 changes: 84 additions & 21 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion py/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ substrait-validator = { path = "../rs", version = "0.0.11" }
pyo3 = { version = "0.21.2", features = ["extension-module"] }

[build-dependencies]
prost-build = "0.10"
prost-build = "0.13.3"
pyo3-build-config = "0.22.2"
walkdir = "2"
dunce = "1"
2 changes: 1 addition & 1 deletion py/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ fn main() {
fs::create_dir_all(&intermediate_path).expect("failed to create protoc output directory");

// Run protoc.
let mut cmd = Command::new(prost_build::protoc());
let mut cmd = Command::new(prost_build::protoc_from_env());
for input_path in input_paths.iter() {
let mut proto_path_arg = OsString::new();
proto_path_arg.push("--proto_path=");
Expand Down

0 comments on commit 4388985

Please sign in to comment.