Skip to content

Commit ee56b1f

Browse files
committed
oracle-v2.33.1: Solana dependencies: no strict versions
Cargo documentation explicitly says that restricting upper version is a bad practice, as it makes it impossible to construct a valid dependency tree, in a workspace that includes other crates, that might have moved to a newer version of the dependency. See https://doc.rust-lang.org/cargo/reference/specifying-dependencies.html#multiple-version-requirements
1 parent 5ee8b5f commit ee56b1f

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

program/rust/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pyth-oracle"
3-
version = "2.33.0"
3+
version = "2.33.1"
44
edition = "2021"
55
license = "Apache 2.0"
66
publish = false
@@ -9,7 +9,7 @@ publish = false
99
bindgen = "0.60.1"
1010

1111
[dependencies]
12-
solana-program = "=1.14.17"
12+
solana-program = "1.14.17"
1313
bytemuck = "1.11.0"
1414
thiserror = "1.0"
1515
num-derive = "0.3"
@@ -18,12 +18,12 @@ byteorder = "1.4.3"
1818
serde = { version = "1.0", features = ["derive"], optional = true }
1919
strum = { version = "0.24.1", features = ["derive"], optional = true }
2020
pythnet-sdk = "2.2.0"
21-
solana-sdk = { version = "=1.14.17", optional = true }
21+
solana-sdk = { version = "1.14.17", optional = true }
2222
bitflags = { version = "2.6.0", features = ["bytemuck"] }
2323

2424
[dev-dependencies]
25-
solana-program-test = "=1.14.17"
26-
solana-sdk = "=1.14.17"
25+
solana-program-test = "1.14.17"
26+
solana-sdk = "1.14.17"
2727
tokio = "1.14.1"
2828
hex = "0.3.1"
2929
quickcheck = "1"

0 commit comments

Comments
 (0)