using solana application fees branch v1.13.5

This commit is contained in:
godmodegalactus 2023-01-01 18:01:00 +01:00
parent a97d04ab06
commit c60dd2f0bd
No known key found for this signature in database
GPG Key ID: A04142C71ABB0DEA
7 changed files with 687 additions and 542 deletions

1205
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -28,11 +28,11 @@ shellexpand = "2.1.0"
toml = "0.5.8"
semver = "1.0.4"
serde = { version = "1.0.122", features = ["derive"] }
solana-sdk = "1.13.5"
solana-program = "1.13.5"
solana-client = "1.13.5"
solana-cli-config = "1.13.5"
solana-faucet = "1.13.5"
solana-sdk = {git = "https://github.com/blockworks-foundation/solana.git", branch = "application-fees-v1.13.5"}
solana-program = {git = "https://github.com/blockworks-foundation/solana.git", branch = "application-fees-v1.13.5"}
solana-client = {git = "https://github.com/blockworks-foundation/solana.git", branch = "application-fees-v1.13.5"}
solana-cli-config = {git = "https://github.com/blockworks-foundation/solana.git", branch = "application-fees-v1.13.5"}
solana-faucet = {git = "https://github.com/blockworks-foundation/solana.git", branch = "application-fees-v1.13.5"}
dirs = "4.0"
heck = "0.4.0"
flate2 = "1.0.19"

View File

@ -15,8 +15,8 @@ anchor-lang = { path = "../lang", version = "0.26.0" }
anyhow = "1.0.32"
regex = "1.4.5"
serde = { version = "1.0.122", features = ["derive"] }
solana-client = "1.14.7"
solana-sdk = "1.13.5"
solana-account-decoder = "1.13.5"
solana-client = {git = "https://github.com/blockworks-foundation/solana.git", branch = "application-fees-v1.13.5"}
solana-sdk = {git = "https://github.com/blockworks-foundation/solana.git", branch = "application-fees-v1.13.5"}
solana-account-decoder = {git = "https://github.com/blockworks-foundation/solana.git", branch = "application-fees-v1.13.5"}
thiserror = "1.0.20"
url = "2.2.2"

View File

@ -17,4 +17,4 @@ events = { path = "../../tests/events/programs/events", features = ["no-entrypoi
shellexpand = "2.1.0"
anyhow = "1.0.32"
clap = { version = "4.0.26", features = ["derive"] }
solana-sdk = "1.13.5"
solana-sdk = {git = "https://github.com/blockworks-foundation/solana.git", branch = "application-fees-v1.13.5"}

View File

@ -36,6 +36,6 @@ arrayref = "0.3.6"
base64 = "0.13.0"
borsh = "0.9"
bytemuck = "1.4.0"
solana-program = "1.13.5"
solana-program = {git = "https://github.com/blockworks-foundation/solana.git", branch = "application-fees-v1.13.5"}
thiserror = "1.0.20"
bincode = "1.3.3"

View File

@ -23,7 +23,7 @@ dex = ["serum_dex"]
anchor-lang = { path = "../lang", version = "0.26.0", features = ["derive"] }
borsh = { version = "^0.9", optional = true }
serum_dex = { git = "https://github.com/openbook-dex/program/", rev = "1be91f2", version = "0.4.0", features = ["no-entrypoint"], optional = true }
solana-program = "1.13.5"
solana-program = {git = "https://github.com/blockworks-foundation/solana.git", branch = "application-fees-v1.13.5"}
spl-token = { version = "3.5.0", features = ["no-entrypoint"], optional = true }
spl-associated-token-account = { version = "1.1.1", features = ["no-entrypoint"], optional = true }
mpl-token-metadata = { version = "1.4.3", optional = true, features = ["no-entrypoint"] }

View File

@ -22,4 +22,4 @@ anchor-lang = { path = "../../../../lang" }
[dev-dependencies]
anchor-client = { path = "../../../../client", features = ["debug"] }
bytemuck = "1.4.0"
solana-program-test = "1.13.5"
solana-program-test = {git = "https://github.com/blockworks-foundation/solana.git", branch = "application-fees-v1.13.5"}