Skip to content
This repository was archived by the owner on Mar 11, 2025. It is now read-only.

Commit 3ff8bf9

Browse files
committed
upgrade to solana version 1.17.17
1 parent 327fb37 commit 3ff8bf9

File tree

2 files changed

+19
-11
lines changed

2 files changed

+19
-11
lines changed

account-compression/programs/account-compression/Cargo.toml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,11 @@ default = []
2020
[dependencies]
2121
anchor-lang = "0.29.0"
2222
bytemuck = "1.13"
23-
solana-program = ">=1.17.13,<=2"
24-
spl-concurrent-merkle-tree = { version="0.2.0", path="../../../libraries/concurrent-merkle-tree", features = [ "sol-log" ]}
25-
spl-noop = { version = "0.2.0", path="../noop", features = [ "no-entrypoint" ]}
23+
solana-program = ">=1.17.17,<=2"
24+
spl-concurrent-merkle-tree = { version = "0.2.0", path = "../../../libraries/concurrent-merkle-tree", features = [
25+
"sol-log",
26+
] }
27+
spl-noop = { version = "0.2.0", path = "../noop", features = ["no-entrypoint"] }
2628

2729
[profile.release]
2830
overflow-checks = true

token/client/Cargo.toml

Lines changed: 14 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -13,20 +13,26 @@ curve25519-dalek = "3.2.1"
1313
futures = "0.3.30"
1414
futures-util = "0.3"
1515
solana-banks-interface = ">=1.17.17,<=2"
16-
solana-cli-output = { version = ">=1.17.13,<=2", optional = true }
16+
solana-cli-output = { version = ">=1.17.17,<=2", optional = true }
1717
solana-program-test = ">=1.17.17,<=2"
1818
solana-rpc-client = ">=1.17.17,<=2"
1919
solana-rpc-client-api = ">=1.17.17,<=2"
2020
solana-sdk = ">=1.17.17,<=2"
2121
# We never want the entrypoint for ATA, but we want the entrypoint for token when
2222
# testing token
23-
spl-associated-token-account = { version = "2.0", path = "../../associated-token-account/program", features = ["no-entrypoint"] }
24-
spl-memo = { version = "4.0.0", path = "../../memo/program", features = ["no-entrypoint"] }
25-
spl-token = { version = "4.0", path="../program", features = [ "no-entrypoint" ] }
26-
spl-token-2022 = { version = "2.0", path="../program-2022" }
27-
spl-token-group-interface = { version = "0.1", path="../../token-group/interface" }
28-
spl-token-metadata-interface = { version = "0.2", path="../../token-metadata/interface" }
29-
spl-transfer-hook-interface = { version = "0.5", path="../transfer-hook/interface" }
23+
spl-associated-token-account = { version = "2.0", path = "../../associated-token-account/program", features = [
24+
"no-entrypoint",
25+
] }
26+
spl-memo = { version = "4.0.0", path = "../../memo/program", features = [
27+
"no-entrypoint",
28+
] }
29+
spl-token = { version = "4.0", path = "../program", features = [
30+
"no-entrypoint",
31+
] }
32+
spl-token-2022 = { version = "2.0", path = "../program-2022" }
33+
spl-token-group-interface = { version = "0.1", path = "../../token-group/interface" }
34+
spl-token-metadata-interface = { version = "0.2", path = "../../token-metadata/interface" }
35+
spl-transfer-hook-interface = { version = "0.5", path = "../transfer-hook/interface" }
3036
thiserror = "1.0"
3137

3238
[features]

0 commit comments

Comments
 (0)