Skip to content

Commit

Permalink
upgrade to solana 1.13
Browse files Browse the repository at this point in the history
  • Loading branch information
dovahcrow committed Nov 6, 2022
1 parent a7eceb4 commit 0016cf7
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 19 deletions.
6 changes: 3 additions & 3 deletions amm-anchor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ edition = "2021"
keywords = ["solana", "raydium", "amm", "anchor"]

[dependencies]
anchor-lang = "0.25.0"
solana-program = "~1.10.29"
spl-token = { version="~3.3.0", features = [ "no-entrypoint" ] }
anchor-lang = {git = "https://github.com/coral-xyz/anchor"}
solana-program = "1.13.3"
spl-token = { version="3.3.0", features = [ "no-entrypoint" ] }
raydium-contract-instructions = { path = "../lib"}
6 changes: 3 additions & 3 deletions client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ path = "src/main.rs"

[dependencies]
raydium-contract-instructions = { path = "../lib"}
spl-token = { version = "3.2.0", features = ["no-entrypoint"], default-features = false }
spl-token = { version = "3.5.0", features = ["no-entrypoint"], default-features = false }
spl-associated-token-account = "1.0.3"
solana-client = "1.9.5"
solana-sdk = "1.9.5"
solana-client = "1.13.3"
solana-sdk = "1.13.3"
anyhow = "1.0.53"

6 changes: 3 additions & 3 deletions farm-anchor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ no-entrypoint = []
cpi = ["no-entrypoint"]

[dependencies]
anchor-lang = "0.25.0"
solana-program = "~1.10.29"
spl-token = { version="~3.3.0", features = [ "no-entrypoint" ] }
anchor-lang = {git = "https://github.com/coral-xyz/anchor"}
solana-program = "1.13.3"
spl-token = { version="3.2.0", features = [ "no-entrypoint" ] }
raydium-contract-instructions = { path = "../lib"}
7 changes: 3 additions & 4 deletions lib/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
[package]
edition = "2021"
name = "raydium-contract-instructions"
version = "0.1.0"
edition = "2021"


[dependencies]
solana-program = "~1.10.29"
spl-token = { version="~3.3.0", features = [ "no-entrypoint" ] }
solana-program = "1.13.3"
spl-token = { version="3.3.0", features = [ "no-entrypoint" ] }
num-derive = "0.3"
num-traits = "0.2.12"
thiserror = "1.0.20"
6 changes: 3 additions & 3 deletions stable-amm-anchor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ no-entrypoint = []
cpi = ["no-entrypoint"]

[dependencies]
anchor-lang = "0.25.0"
solana-program = "~1.10.29"
spl-token = { version="~3.3.0", features = [ "no-entrypoint" ] }
anchor-lang = {git = "https://github.com/coral-xyz/anchor"}
solana-program = "1.13.3"
spl-token = { version="3.3.0", features = [ "no-entrypoint" ] }
raydium-contract-instructions = { path = "../lib"}
6 changes: 3 additions & 3 deletions staking-anchor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ no-entrypoint = []
cpi = ["no-entrypoint"]

[dependencies]
anchor-lang = "0.25.0"
solana-program = "~1.10.29"
spl-token = { version="~3.3.0", features = [ "no-entrypoint" ] }
anchor-lang = {git = "https://github.com/coral-xyz/anchor"}
solana-program = "1.13.3"
spl-token = { version="3.3.0", features = [ "no-entrypoint" ] }
raydium-contract-instructions = { path = "../lib"}

0 comments on commit 0016cf7

Please sign in to comment.