Skip to content

Commit

Permalink
chore: bump prost to 0.13 (#849)
Browse files Browse the repository at this point in the history
Co-authored-by: hzlinyiyu <[email protected]>
  • Loading branch information
attila-lin and hzlinyiyu-netease authored Jul 18, 2024
1 parent d65aa05 commit 48ad0be
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 10 deletions.
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ serde_urlencoded = "0.7.1"
indexmap = "2.0.0"
reqwest = { version = "0.12.2", default-features = false }
darling = "0.20.8"
http = "1.0.0"

# rustls, update together
rustls = "0.22.0"
Expand Down
2 changes: 1 addition & 1 deletion examples/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@ mime = "0.3.16"
open = "5.0.1"
futures-util = "0.3.21"
tokio-stream = "0.1.8"
prost = "0.12.0"
prost = "0.13.1"
6 changes: 3 additions & 3 deletions examples/disabled/tonic/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ publish.workspace = true
[dependencies]
poem = { workspace = true, features = ["tower-compat"] }
tokio = { workspace = true, features = ["rt-multi-thread", "macros"] }
prost = "0.12.0"
tonic = "0.10.2"
prost = "0.13.1"
tonic = "0.12.1"
tracing-subscriber.workspace = true
tower = { version = "0.4.8", features = ["buffer"] }

[build-dependencies]
tonic-build = "0.10.2"
tonic-build = "0.12.1"

[[bin]]
name = "example-tonic-client"
Expand Down
2 changes: 1 addition & 1 deletion poem-grpc-build/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ categories = ["network-programming", "asynchronous"]

[dependencies]
prettyplease = "0.2.9"
prost-build = "0.12.0"
prost-build = "0.13.1"
quote.workspace = true
proc-macro2.workspace = true
syn.workspace = true
Expand Down
6 changes: 3 additions & 3 deletions poem-grpc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,16 +27,16 @@ flate2 = "1.0.24"
itoa = "1.0.2"
percent-encoding = "2.1.0"
bytes.workspace = true
prost = "0.12.0"
prost = "0.13.1"
base64.workspace = true
prost-types = "0.12.0"
prost-types = "0.13.1"
tokio-stream = { workspace = true, features = ["sync"] }
serde = { workspace = true, optional = true }
serde_json = { workspace = true, optional = true }
rustls = { workspace = true }
thiserror.workspace = true
fastrand = "2.0.0"
http = "1.0.0"
http.workspace = true
hyper = { version = "1.0.0", features = ["http1", "http2"] }
hyper-util = { version = "0.1.3", features = ["client-legacy", "tokio"] }
http-body-util = "0.1.0"
Expand Down
2 changes: 1 addition & 1 deletion poem-openapi-derive/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ syn = { workspace = true, features = ["full", "visit-mut"] }
thiserror.workspace = true
indexmap.workspace = true
regex.workspace = true
http = "1.0.0"
http.workspace = true
mime.workspace = true

[package.metadata.workspaces]
Expand Down
2 changes: 1 addition & 1 deletion poem/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ poem-derive.workspace = true

bytes.workspace = true
futures-util = { workspace = true, features = ["sink"] }
http = "1.0.0"
http.workspace = true
hyper = { version = "1.0.0", features = ["http1", "http2"] }
hyper-util = { version = "0.1.3", features = ["server-auto", "tokio"] }
http-body-util = "0.1.0"
Expand Down

0 comments on commit 48ad0be

Please sign in to comment.