Skip to content

Commit

Permalink
upgrade to solana version 1.17.17
Browse files Browse the repository at this point in the history
  • Loading branch information
samkim-crypto committed Feb 1, 2024
1 parent 1d06fdd commit 3eb4465
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 11 deletions.
8 changes: 5 additions & 3 deletions account-compression/programs/account-compression/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,11 @@ default = []
[dependencies]
anchor-lang = "0.29.0"
bytemuck = "1.13"
solana-program = ">=1.17.13,<=2"
spl-concurrent-merkle-tree = { version="0.2.0", path="../../../libraries/concurrent-merkle-tree", features = [ "sol-log" ]}
spl-noop = { version = "0.2.0", path="../noop", features = [ "no-entrypoint" ]}
solana-program = ">=1.17.17,<=2"
spl-concurrent-merkle-tree = { version = "0.2.0", path = "../../../libraries/concurrent-merkle-tree", features = [
"sol-log",
] }
spl-noop = { version = "0.2.0", path = "../noop", features = ["no-entrypoint"] }

[profile.release]
overflow-checks = true
22 changes: 14 additions & 8 deletions token/client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,20 +13,26 @@ curve25519-dalek = "3.2.1"
futures = "0.3.30"
futures-util = "0.3"
solana-banks-interface = ">=1.17.17,<=2"
solana-cli-output = { version = ">=1.17.13,<=2", optional = true }
solana-cli-output = { version = ">=1.17.17,<=2", optional = true }
solana-program-test = ">=1.17.17,<=2"
solana-rpc-client = ">=1.17.17,<=2"
solana-rpc-client-api = ">=1.17.17,<=2"
solana-sdk = ">=1.17.17,<=2"
# We never want the entrypoint for ATA, but we want the entrypoint for token when
# testing token
spl-associated-token-account = { version = "2.0", path = "../../associated-token-account/program", features = ["no-entrypoint"] }
spl-memo = { version = "4.0.0", path = "../../memo/program", features = ["no-entrypoint"] }
spl-token = { version = "4.0", path="../program", features = [ "no-entrypoint" ] }
spl-token-2022 = { version = "2.0", path="../program-2022" }
spl-token-group-interface = { version = "0.1", path="../../token-group/interface" }
spl-token-metadata-interface = { version = "0.2", path="../../token-metadata/interface" }
spl-transfer-hook-interface = { version = "0.5", path="../transfer-hook/interface" }
spl-associated-token-account = { version = "2.0", path = "../../associated-token-account/program", features = [
"no-entrypoint",
] }
spl-memo = { version = "4.0.0", path = "../../memo/program", features = [
"no-entrypoint",
] }
spl-token = { version = "4.0", path = "../program", features = [
"no-entrypoint",
] }
spl-token-2022 = { version = "2.0", path = "../program-2022" }
spl-token-group-interface = { version = "0.1", path = "../../token-group/interface" }
spl-token-metadata-interface = { version = "0.2", path = "../../token-metadata/interface" }
spl-transfer-hook-interface = { version = "0.5", path = "../transfer-hook/interface" }
thiserror = "1.0"

[features]
Expand Down

0 comments on commit 3eb4465

Please sign in to comment.