Skip to content

Commit

Permalink
fix(solana-semver): limit to <2
Browse files Browse the repository at this point in the history
  • Loading branch information
mgild committed Jan 11, 2025
1 parent 9ffd16d commit 4b47c82
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions token-lending/program/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ test-bpf = []
bytemuck = "1.5.1"
# pyth-sdk-solana = "0.8.0"
# pyth-solana-receiver-sdk = "0.3.0"
solana-program = "=1.16.20"
solana-program = "=1.16.20,<2"
solend-sdk = { path = "../sdk" }
oracles = { path = "../oracles" }
spl-token = { version = "3.3.0", features=["no-entrypoint"] }
spl-token = { version = "^3.3.0", features=["no-entrypoint"] }
static_assertions = "1.1.0"

[dev-dependencies]
Expand Down
4 changes: 2 additions & 2 deletions token-lending/sdk/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ borsh = "0.10.3"
bytemuck = "1.5.1"
num-derive = "0.3"
num-traits = "0.2"
solana-program = ">=1.9"
spl-token = { version = "3.2.0", features=["no-entrypoint"] }
solana-program = ">=1.9,<2"
spl-token = { version = "^3.2.0,<4", features=["no-entrypoint"] }
static_assertions = "1.1.0"
thiserror = "1.0"
uint = "=0.9.1"
Expand Down

0 comments on commit 4b47c82

Please sign in to comment.