Skip to content

Commit

Permalink
Upgrade tonic and prost to latest
Browse files Browse the repository at this point in the history
This has the side effect to add the protobuf compiler as a build
requirement. It also removes the need for rustfmt during build.

Signed-off-by: Nicolas Belouin <[email protected]>
  • Loading branch information
diconico07 committed Apr 27, 2023
1 parent 2be4280 commit bbd8791
Show file tree
Hide file tree
Showing 16 changed files with 844 additions and 304 deletions.
181 changes: 142 additions & 39 deletions Cargo.lock

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

8 changes: 4 additions & 4 deletions agent/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,22 +32,22 @@ lazy_static = "1.4"
log = "0.4"
mockall_double = "0.2.0"
prometheus = { version = "0.12.0", features = ["process"] }
prost = "0.8.0"
prost-types = "0.8.0"
prost = "0.11"
prost-types = "0.11"
rand = "0.8.2"
serde = "1.0.104"
serde_json = "1.0.45"
serde_yaml = "0.8.11"
serde_derive = "1.0.104"
tokio = { version = "1.0", features = ["rt-multi-thread", "time", "fs", "macros", "net"] }
tokio-stream = { version = "0.1", features = ["net"] }
tonic = "0.5.2"
tonic = "0.9.2"
tower = "0.4.8"
url = "2.1.0"
uuid = { version = "0.8.1", features = ["v4"] }

[build-dependencies]
tonic-build = "0.5.2"
tonic-build = "0.9.2"

[dev-dependencies]
# for testing using a simple discovery handler
Expand Down
Loading

0 comments on commit bbd8791

Please sign in to comment.