Skip to content

Commit

Permalink
chore(deps): Run cargo update/upgrade (#310)
Browse files Browse the repository at this point in the history
Updates dependencies. Only change required in our code is related with
tungstenite's recent `Message`
[changes](https://github.com/snapview/tungstenite-rs/blob/master/CHANGELOG.md#0260).
  • Loading branch information
v0-e authored Dec 31, 2024
1 parent aa0d95d commit ca0c244
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion v4-client-rs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ bigdecimal = { version = "0.4", features = ["serde"] }
derive_more = { version = "1", features = ["full"] }
log = "0.4"
thiserror = "2"
tokio = { version = "1.41", features = ["fs", "rt-multi-thread"] }
tokio = { version = "1.42", features = ["fs", "rt-multi-thread"] }
dydx-proto = "0.2.0"
6 changes: 3 additions & 3 deletions v4-client-rs/client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,19 +30,19 @@ cosmrs = "0.21"
chrono = { version = "0.4", features = ["serde"] }
derive_more.workspace = true
futures-util = "0.3"
governor = { version = "0.7", default-features = false, features = ["std"] }
governor = { version = "0.8", default-features = false, features = ["std"] }
ibc-proto = { version = "0.51", optional = true }
log.workspace = true
rand = "0.8"
reqwest = { version = "0.12", features = ["json"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
serde_with = "3.11"
serde_with = "3.12"
strum = { version = "0.26", features = ["derive"] }
thiserror.workspace = true
tonic = { version = "0.12", features = ["tls-native-roots"] }
tokio.workspace = true
tokio-tungstenite = { version = "0.24", features = ["native-tls"] }
tokio-tungstenite = { version = "0.26", features = ["native-tls"] }
toml = "0.8"
tower = { version = "0.5", features = ["timeout"] }
dydx-proto.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion v4-client-rs/client/src/indexer/sock/messages.rs
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ impl MessageFormatter {
map.extend(fields);
}
}
Message::Text(message.to_string())
Message::Text(message.to_string().into())
}
}

Expand Down

0 comments on commit ca0c244

Please sign in to comment.