Skip to content

Commit

Permalink
Upgrade dependencies (#55)
Browse files Browse the repository at this point in the history
  • Loading branch information
devashishdxt authored Feb 11, 2024
1 parent 46031be commit b61effd
Show file tree
Hide file tree
Showing 6 changed files with 36 additions and 36 deletions.
26 changes: 13 additions & 13 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,22 +12,22 @@ keywords = ["grpc", "grpc-web", "tonic", "wasm"]
edition = "2021"

[dependencies]
base64 = "0.21.4"
byteorder = "1.4.3"
base64 = "0.21.7"
byteorder = "1.5.0"
bytes = "1.5.0"
futures-util = "0.3.28"
http = "0.2.9"
http-body = "0.4.5"
futures-util = "0.3.30"
http = "0.2.11"
http-body = "0.4.6"
httparse = "1.8.0"
js-sys = "0.3.64"
pin-project = "1.1.3"
thiserror = "1.0.49"
tonic = { version = "0.10.1", default-features = false }
js-sys = "0.3.68"
pin-project = "1.1.4"
thiserror = "1.0.56"
tonic = { version = "0.11.0", default-features = false }
tower-service = "0.3.2"
wasm-bindgen = "0.2.87"
wasm-bindgen-futures = "0.4.37"
wasm-streams = "0.3.0"
web-sys = { version = "0.3.64", features = [
wasm-bindgen = "0.2.91"
wasm-bindgen-futures = "0.4.41"
wasm-streams = "0.4.0"
web-sys = { version = "0.3.68", features = [
"Headers",
"ReadableStream",
"ReferrerPolicy",
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
//!
//! ```toml
//! [dependencies]
//! tonic-web-wasm-client = "0.3"
//! tonic-web-wasm-client = "0.5"
//! ```
//!
//! ## Example
Expand Down
8 changes: 4 additions & 4 deletions test-suite/gzip/client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,18 +6,18 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
prost = "0.12.1"
tonic = { version = "0.10.1", default-features = false, features = [
prost = "0.12.3"
tonic = { version = "0.11.0", default-features = false, features = [
"prost",
"codegen",
"gzip",
] }

[build-dependencies]
tonic-build = { version = "0.10.1", default-features = false, features = [
tonic-build = { version = "0.11.0", default-features = false, features = [
"prost",
] }

[dev-dependencies]
tonic-web-wasm-client = { path = "../../.." }
wasm-bindgen-test = "0.3.37"
wasm-bindgen-test = "0.3.41"
14 changes: 7 additions & 7 deletions test-suite/gzip/server/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
futures-core = "0.3.28"
http = "0.2.9"
prost = "0.12.1"
tokio = { version = "1.32.0", features = ["macros", "rt-multi-thread"] }
tonic = { version = "0.10.1", features = ["gzip"] }
tonic-web = "0.10.1"
futures-core = "0.3.30"
http = "0.2.11"
prost = "0.12.3"
tokio = { version = "1.36.0", features = ["macros", "rt-multi-thread"] }
tonic = { version = "0.11.0", features = ["gzip"] }
tonic-web = "0.11.0"
tower-http = { version = "0.4.4", default-features = false, features = [
"cors",
] }

[build-dependencies]
tonic-build = "0.10.1"
tonic-build = "0.11.0"
8 changes: 4 additions & 4 deletions test-suite/simple/client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,17 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
prost = "0.12.1"
tonic = { version = "0.10.1", default-features = false, features = [
prost = "0.12.3"
tonic = { version = "0.11.0", default-features = false, features = [
"prost",
"codegen",
] }

[build-dependencies]
tonic-build = { version = "0.10.1", default-features = false, features = [
tonic-build = { version = "0.11.0", default-features = false, features = [
"prost",
] }

[dev-dependencies]
tonic-web-wasm-client = { path = "../../.." }
wasm-bindgen-test = "0.3.37"
wasm-bindgen-test = "0.3.41"
14 changes: 7 additions & 7 deletions test-suite/simple/server/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
futures-core = "0.3.28"
http = "0.2.9"
prost = "0.12.1"
tokio = { version = "1.32.0", features = ["macros", "rt-multi-thread"] }
tonic = "0.10.1"
tonic-web = "0.10.1"
futures-core = "0.3.30"
http = "0.2.11"
prost = "0.12.3"
tokio = { version = "1.36.0", features = ["macros", "rt-multi-thread"] }
tonic = "0.11.0"
tonic-web = "0.11.0"
tower-http = { version = "0.4.4", default-features = false, features = [
"cors",
] }

[build-dependencies]
tonic-build = "0.10.1"
tonic-build = "0.11.0"

0 comments on commit b61effd

Please sign in to comment.