Skip to content

Commit 689b6bb

Browse files
committed
fix(lazer-protocol): Make JrpcId cloneable
1 parent 6fe8594 commit 689b6bb

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

Cargo.lock

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

lazer/sdk/rust/protocol/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pyth-lazer-protocol"
3-
version = "0.18.0"
3+
version = "0.18.1"
44
edition = "2021"
55
description = "Pyth Lazer SDK - protocol types."
66
license = "Apache-2.0"

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ use crate::{api::Channel, price::Price};
66
use serde::{Deserialize, Serialize};
77
use std::time::Duration;
88

9-
#[derive(Serialize, Deserialize, Debug, Default, Eq, PartialEq)]
9+
#[derive(Serialize, Deserialize, Clone, Debug, Default, Eq, PartialEq)]
1010
#[serde(untagged)]
1111
pub enum JrpcId {
1212
String(String),

0 commit comments

Comments
 (0)