diff --git a/Cargo.lock b/Cargo.lock index 5dc69aa3ba..76e735e91e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5674,8 +5674,8 @@ dependencies = [ "hyper 1.6.0", "hyper-util", "protobuf", - "pyth-lazer-protocol 0.15.1 (registry+https://github.com/rust-lang/crates.io-index)", - "pyth-lazer-publisher-sdk 0.12.1 (registry+https://github.com/rust-lang/crates.io-index)", + "pyth-lazer-protocol 0.15.1", + "pyth-lazer-publisher-sdk 0.12.1", "reqwest 0.12.23", "serde", "serde_json", @@ -5693,7 +5693,7 @@ dependencies = [ [[package]] name = "pyth-lazer-client" -version = "8.1.0" +version = "8.1.1" dependencies = [ "alloy-primitives 0.8.25", "anyhow", @@ -5711,7 +5711,7 @@ dependencies = [ "hex", "humantime-serde", "libsecp256k1 0.7.2", - "pyth-lazer-protocol 0.15.1", + "pyth-lazer-protocol 0.15.2", "reqwest 0.12.23", "serde", "serde_json", @@ -5726,22 +5726,17 @@ dependencies = [ [[package]] name = "pyth-lazer-protocol" version = "0.15.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8d91dc5606c70529bf14769034738bc8773d359b4313be3c44449dd3b442096d" dependencies = [ - "alloy-primitives 0.8.25", "anyhow", - "assert_float_eq", - "bincode 1.3.3", - "bs58", "byteorder", "chrono", "derive_more 1.0.0", - "ed25519-dalek 2.1.1", "hex", "humantime", "humantime-serde", "itertools 0.13.0", - "libsecp256k1 0.7.2", - "mry", "protobuf", "rust_decimal", "serde", @@ -5751,18 +5746,23 @@ dependencies = [ [[package]] name = "pyth-lazer-protocol" -version = "0.15.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8d91dc5606c70529bf14769034738bc8773d359b4313be3c44449dd3b442096d" +version = "0.15.2" dependencies = [ + "alloy-primitives 0.8.25", "anyhow", + "assert_float_eq", + "bincode 1.3.3", + "bs58", "byteorder", "chrono", "derive_more 1.0.0", + "ed25519-dalek 2.1.1", "hex", "humantime", "humantime-serde", "itertools 0.13.0", + "libsecp256k1 0.7.2", + "mry", "protobuf", "rust_decimal", "serde", @@ -5773,6 +5773,8 @@ dependencies = [ [[package]] name = "pyth-lazer-publisher-sdk" version = "0.12.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "34b5f8284182d0acb4afa3c8289727511e36f59ab15b52d850aa2e32ffe0684f" dependencies = [ "anyhow", "fs-err", @@ -5784,15 +5786,13 @@ dependencies = [ [[package]] name = "pyth-lazer-publisher-sdk" -version = "0.12.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "34b5f8284182d0acb4afa3c8289727511e36f59ab15b52d850aa2e32ffe0684f" +version = "0.12.2" dependencies = [ "anyhow", "fs-err", "protobuf", "protobuf-codegen", - "pyth-lazer-protocol 0.15.1 (registry+https://github.com/rust-lang/crates.io-index)", + "pyth-lazer-protocol 0.15.2", "serde_json", ] diff --git a/lazer/contracts/solana/programs/pyth-lazer-solana-contract/Cargo.toml b/lazer/contracts/solana/programs/pyth-lazer-solana-contract/Cargo.toml index 11b7baf8a0..2586870eba 100644 --- a/lazer/contracts/solana/programs/pyth-lazer-solana-contract/Cargo.toml +++ b/lazer/contracts/solana/programs/pyth-lazer-solana-contract/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pyth-lazer-solana-contract" -version = "0.7.0" +version = "0.7.1" edition = "2021" description = "Pyth Lazer Solana contract and SDK." license = "Apache-2.0" @@ -19,7 +19,7 @@ no-log-ix-name = [] idl-build = ["anchor-lang/idl-build"] [dependencies] -pyth-lazer-protocol = { path = "../../../../sdk/rust/protocol", version = "0.15.0" } +pyth-lazer-protocol = { path = "../../../../sdk/rust/protocol", version = "0.15.2" } anchor-lang = "0.31.1" bytemuck = { version = "1.20.0", features = ["derive"] } diff --git a/lazer/publisher_sdk/rust/Cargo.toml b/lazer/publisher_sdk/rust/Cargo.toml index a805bef5fe..4253046774 100644 --- a/lazer/publisher_sdk/rust/Cargo.toml +++ b/lazer/publisher_sdk/rust/Cargo.toml @@ -1,13 +1,13 @@ [package] name = "pyth-lazer-publisher-sdk" -version = "0.12.1" +version = "0.12.2" edition = "2021" description = "Pyth Lazer Publisher SDK types." license = "Apache-2.0" repository = "https://github.com/pyth-network/pyth-crosschain" [dependencies] -pyth-lazer-protocol = { version = "0.15.1", path = "../../sdk/rust/protocol" } +pyth-lazer-protocol = { version = "0.15.2", path = "../../sdk/rust/protocol" } anyhow = "1.0.98" protobuf = "3.7.2" serde_json = "1.0.140" diff --git a/lazer/sdk/rust/client/Cargo.toml b/lazer/sdk/rust/client/Cargo.toml index 062046ad9d..5bcb6d6a95 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 = "8.1.0" +version = "8.1.1" edition = "2021" description = "A Rust client for Pyth Lazer" license = "Apache-2.0" [dependencies] -pyth-lazer-protocol = { path = "../protocol", version = "0.15.0" } +pyth-lazer-protocol = { path = "../protocol", version = "0.15.2" } tokio = { version = "1", features = ["full"] } tokio-tungstenite = { version = "0.20", features = ["native-tls"] } futures-util = "0.3" diff --git a/lazer/sdk/rust/protocol/Cargo.toml b/lazer/sdk/rust/protocol/Cargo.toml index f73a098bc9..05e986d80f 100644 --- a/lazer/sdk/rust/protocol/Cargo.toml +++ b/lazer/sdk/rust/protocol/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pyth-lazer-protocol" -version = "0.15.1" +version = "0.15.2" edition = "2021" description = "Pyth Lazer SDK - protocol types." license = "Apache-2.0"