Skip to content

Commit

Permalink
Merge pull request #60 from github/tclem/update-prost-wkt
Browse files Browse the repository at this point in the history
Update prost and prost-wkt
  • Loading branch information
tclem authored Jul 18, 2024
2 parents dc23eb1 + c4988bd commit 0f6cf09
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 79 deletions.
92 changes: 18 additions & 74 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 crates/twirp/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ futures = "0.3"
http = "1.0"
http-body-util = "0.1"
hyper = { version = "1.4", default-features = false }
prost = "0.12"
prost = "0.13"
reqwest = { version = "0.12", default-features = false }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
Expand Down
10 changes: 6 additions & 4 deletions example/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,10 @@ edition = "2021"
[dependencies]
twirp = { path = "../crates/twirp" }

prost = "0.12"
prost-wkt = "0.5"
prost-wkt-types = "0.5"
prost = "0.13"
# TODO: Go back to a true release, waiting on https://github.com/fdeantoni/prost-wkt/pull/68
prost-wkt = { git = "https://github.com/fdeantoni/prost-wkt.git", rev = "0d06c21b24f195fb2bf6e8558111eae9c552f466" }
prost-wkt-types = { git = "https://github.com/fdeantoni/prost-wkt.git", rev = "0d06c21b24f195fb2bf6e8558111eae9c552f466" }
serde = { version = "1.0", features = ["derive"] }
tokio = { version = "1.38", features = ["rt-multi-thread", "macros"] }

Expand All @@ -18,7 +19,8 @@ twirp-build = { path = "../crates/twirp-build" }
fs-err = "2.8"
glob = "0.3.0"
prost-build = "0.13"
prost-wkt-build = "0.5"
# TODO: Go back to a true release, waiting on https://github.com/fdeantoni/prost-wkt/pull/68
prost-wkt-build = { git = "https://github.com/fdeantoni/prost-wkt.git", rev = "0d06c21b24f195fb2bf6e8558111eae9c552f466" }

[[bin]]
name = "example-client"
Expand Down

0 comments on commit 0f6cf09

Please sign in to comment.