Skip to content

Commit f6df4d8

Browse files
authored
fix: use latest protosocket libraries (#509)
1 parent 1fbe151 commit f6df4d8

File tree

2 files changed

+21
-21
lines changed

2 files changed

+21
-21
lines changed

Cargo.lock

Lines changed: 11 additions & 11 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,7 @@ repository = "https://github.com/momentohq/client-sdk-rust"
1010
homepage = "https://gomomento.com/"
1111

1212
[workspace]
13-
members = [
14-
".",
15-
"test-util"
16-
]
13+
members = [".", "test-util"]
1714

1815
# This is marked as an example so it can access dev-dependencies
1916
[[example]]
@@ -31,19 +28,23 @@ doc = false
3128

3229

3330
[dependencies]
34-
momento-protos = "0.127.3"
31+
momento-protos = "0.127.4"
3532
base64 = "0.22"
3633
derive_more = { version = "2.0.1", features = ["full"] }
3734
futures = "0"
3835
h2 = { version = "0.4" }
3936
http = { version = "1" }
4037
hyper = { version = "1.6" }
4138
log = "0.4"
42-
protosocket = "0.11.0"
43-
protosocket-prost = "0.11.0"
44-
protosocket-rpc = "0.11.0"
39+
protosocket = "0.12.1"
40+
protosocket-prost = "0.12.1"
41+
protosocket-rpc = "0.12.1"
4542
rand = "0.9"
46-
reqwest = { version = "0.12", default-features = false, features = ["http2", "json", "rustls-tls-native-roots"] }
43+
reqwest = { version = "0.12", default-features = false, features = [
44+
"http2",
45+
"json",
46+
"rustls-tls-native-roots",
47+
] }
4748
serde = { version = "1.0", features = ["derive"] }
4849
serde_json = "1.0"
4950
thiserror = "2.0"
@@ -60,4 +61,3 @@ base64-url = "3"
6061
env_logger = "0"
6162
tokio-test = "0"
6263
uuid = { version = "1", features = ["v4"] }
63-

0 commit comments

Comments
 (0)