diff --git a/Cargo.lock b/Cargo.lock index 74e0812..5ba6672 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2754,7 +2754,7 @@ dependencies = [ [[package]] name = "pyth-sdk-solana" -version = "0.10.5" +version = "0.10.6" dependencies = [ "borsh 0.10.4", "borsh-derive 0.10.4", diff --git a/Cargo.toml b/Cargo.toml index e7f9233..4ef9659 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,7 +9,7 @@ members = [ [workspace.dependencies] pyth-sdk = { path = "./pyth-sdk", version = "0.8.0" } -pyth-sdk-solana = { path = "./pyth-sdk-solana", version = "0.10.4" } +pyth-sdk-solana = { path = "./pyth-sdk-solana", version = "0.10.6" } solana-program = ">= 1.10" borsh = "0.10.4" diff --git a/examples/sol-anchor-contract/programs/sol-anchor-contract/Cargo.toml b/examples/sol-anchor-contract/programs/sol-anchor-contract/Cargo.toml index eb2a437..5839d1e 100644 --- a/examples/sol-anchor-contract/programs/sol-anchor-contract/Cargo.toml +++ b/examples/sol-anchor-contract/programs/sol-anchor-contract/Cargo.toml @@ -20,4 +20,4 @@ default = [] anchor-lang = "0.28.0" pyth-sdk = { path = "../../../../pyth-sdk", version = "0.8.0" } solana-program = ">= 1.10, < 2.0" -pyth-sdk-solana = { path = "../../../../pyth-sdk-solana", version = "0.10.2" } +pyth-sdk-solana = { path = "../../../../pyth-sdk-solana", version = "0.10.6" } diff --git a/pyth-sdk-solana/Cargo.toml b/pyth-sdk-solana/Cargo.toml index c8a19f8..ab779e8 100644 --- a/pyth-sdk-solana/Cargo.toml +++ b/pyth-sdk-solana/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pyth-sdk-solana" -version = "0.10.5" +version = "0.10.6" authors = ["Pyth Data Foundation"] workspace = "../" edition = "2018" diff --git a/pyth-sdk-solana/README.md b/pyth-sdk-solana/README.md index 9616ee9..6b604cb 100644 --- a/pyth-sdk-solana/README.md +++ b/pyth-sdk-solana/README.md @@ -1,5 +1,7 @@ # Pyth Network Solana SDK +> Notice: This crate contains the internal implementation details of Pyth on Pythnet. If you want to use Pyth prices on Solana, use the [pyth-solana-receiver-sdk](https://crates.io/crates/pyth-solana-receiver-sdk) crate instead. + This crate provides utilities for reading price feeds from the [pyth.network](https://pyth.network/) oracle on the Solana network. It also includes several [off-chain example programs](examples/). diff --git a/pyth-sdk-solana/test-contract/Cargo.toml b/pyth-sdk-solana/test-contract/Cargo.toml index cc0a9f8..ecba7b1 100644 --- a/pyth-sdk-solana/test-contract/Cargo.toml +++ b/pyth-sdk-solana/test-contract/Cargo.toml @@ -9,7 +9,7 @@ test-bpf = [] no-entrypoint = [] [dependencies] -pyth-sdk-solana = { path = "../", version = "0.10.0" } +pyth-sdk-solana = { path = "../", version = "0.10.6" } solana-program = ">= 1.10" bytemuck = "1.7.2" borsh = "0.10.3"