Skip to content

Commit 218d780

Browse files
fix(pyth-lazer-protocol): deser Channel from String, not &str (#2327)
* fix: deser Channel from String, not &str * fix: bump ver, fix clippy
1 parent a02003a commit 218d780

File tree

4 files changed

+14
-14
lines changed

4 files changed

+14
-14
lines changed

lazer/Cargo.lock

+10-10
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lazer/sdk/rust/client/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ anyhow = "1.0"
1717
tracing = "0.1"
1818
url = "2.4"
1919

20-
[dev_dependencies]
20+
[dev-dependencies]
2121
bincode = "1.3.3"
2222
ed25519-dalek = { version = "2.1.1", features = ["rand_core"] }
2323
hex = "0.4.3"

lazer/sdk/rust/protocol/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pyth-lazer-protocol"
3-
version = "0.4.1"
3+
version = "0.4.2"
44
edition = "2021"
55
description = "Pyth Lazer SDK - protocol types."
66
license = "Apache-2.0"

lazer/sdk/rust/protocol/src/router.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -228,8 +228,8 @@ impl<'de> Deserialize<'de> for Channel {
228228
where
229229
D: serde::Deserializer<'de>,
230230
{
231-
let value = <&str>::deserialize(deserializer)?;
232-
parse_channel(value).ok_or_else(|| D::Error::custom("unknown channel"))
231+
let value = <String>::deserialize(deserializer)?;
232+
parse_channel(&value).ok_or_else(|| D::Error::custom("unknown channel"))
233233
}
234234
}
235235

0 commit comments

Comments
 (0)