diff --git a/lazer/Cargo.lock b/lazer/Cargo.lock index 1eab621cf7..721e57aaf6 100644 --- a/lazer/Cargo.lock +++ b/lazer/Cargo.lock @@ -3760,7 +3760,7 @@ dependencies = [ [[package]] name = "pyth-lazer-client" -version = "0.1.0" +version = "0.1.1" dependencies = [ "alloy-primitives", "anyhow", @@ -3771,7 +3771,7 @@ dependencies = [ "futures-util", "hex", "libsecp256k1 0.7.1", - "pyth-lazer-protocol 0.4.1", + "pyth-lazer-protocol 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)", "serde", "serde_json", "tokio", @@ -3814,6 +3814,22 @@ dependencies = [ "serde_json", ] +[[package]] +name = "pyth-lazer-protocol" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5c9bbddb1201109b5b5f2d78ecb67ddee69148a4f4feed6935870013b3ac6bbb" +dependencies = [ + "anyhow", + "base64 0.22.1", + "byteorder", + "derive_more", + "itertools 0.13.0", + "rust_decimal", + "serde", + "serde_json", +] + [[package]] name = "pyth-lazer-solana-contract" version = "0.2.0" diff --git a/lazer/sdk/rust/client/Cargo.toml b/lazer/sdk/rust/client/Cargo.toml index 93baf3e3a7..56e65859d9 100644 --- a/lazer/sdk/rust/client/Cargo.toml +++ b/lazer/sdk/rust/client/Cargo.toml @@ -1,12 +1,12 @@ [package] name = "pyth-lazer-client" -version = "0.1.0" +version = "0.1.1" edition = "2021" description = "A Rust client for Pyth Lazer" license = "Apache-2.0" [dependencies] -pyth-lazer-protocol = { path = "../protocol" } +pyth-lazer-protocol = "0.4.1" tokio = { version = "1", features = ["full"] } tokio-tungstenite = { version = "0.20", features = ["native-tls"] } futures-util = "0.3"