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

Commit ddc029e

Browse files
authored
token: Bump to 3.2.0 everywhere (#2116)
1 parent ea354ab commit ddc029e

File tree

11 files changed

+29
-29
lines changed

11 files changed

+29
-29
lines changed

Cargo.lock

Lines changed: 19 additions & 19 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

associated-token-account/program/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ test-bpf = []
1313

1414
[dependencies]
1515
solana-program = "1.7.4"
16-
spl-token = { version = "3.1", path = "../../token/program", features = ["no-entrypoint"] }
16+
spl-token = { version = "3.2", path = "../../token/program", features = ["no-entrypoint"] }
1717

1818
[dev-dependencies]
1919
solana-program-test = "1.7.4"

binary-oracle-pair/program/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ test-bpf = []
1414
num-derive = "0.3"
1515
num-traits = "0.2"
1616
solana-program = "1.7.4"
17-
spl-token = { version = "3.1", path = "../../token/program", features = [ "no-entrypoint" ] }
17+
spl-token = { version = "3.2", path = "../../token/program", features = [ "no-entrypoint" ] }
1818
thiserror = "1.0"
1919
uint = "0.9"
2020
arbitrary = { version = "0.4", features = ["derive"], optional = true }

feature-proposal/program/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ test-bpf = []
1515
borsh = "0.9"
1616
borsh-derive = "0.9.0"
1717
solana-program = "1.7.4"
18-
spl-token = { version = "3.1", path = "../../token/program", features = ["no-entrypoint"] }
18+
spl-token = { version = "3.2", path = "../../token/program", features = ["no-entrypoint"] }
1919

2020
[dev-dependencies]
2121
solana-program-test = "1.7.4"

governance/program/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ num-traits = "0.2"
2020
serde = "1.0.126"
2121
serde_derive = "1.0.103"
2222
solana-program = "1.7.4"
23-
spl-token = { version = "3.1.1", path = "../../token/program", features = [ "no-entrypoint" ] }
23+
spl-token = { version = "3.2", path = "../../token/program", features = [ "no-entrypoint" ] }
2424
thiserror = "1.0"
2525

2626
[dev-dependencies]

stake-pool/cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ solana-remote-wallet = "=1.7.4"
2222
solana-sdk = "=1.7.4"
2323
spl-associated-token-account = { version = "1.0", path="../../associated-token-account/program", features = [ "no-entrypoint" ] }
2424
spl-stake-pool = { version = "0.4", path="../program", features = [ "no-entrypoint" ] }
25-
spl-token = { version = "3.1", path="../../token/program", features = [ "no-entrypoint" ] }
25+
spl-token = { version = "3.2", path="../../token/program", features = [ "no-entrypoint" ] }
2626
bs58 = "0.4.0"
2727
bincode = "1.3.1"
2828
lazy_static = "1.4.0"

stake-pool/program/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ num_enum = "0.5.1"
2020
serde = "1.0.126"
2121
serde_derive = "1.0.103"
2222
solana-program = "1.7.4"
23-
spl-token = { version = "3.1", path = "../../token/program", features = [ "no-entrypoint" ] }
23+
spl-token = { version = "3.2", path = "../../token/program", features = [ "no-entrypoint" ] }
2424
thiserror = "1.0"
2525
bincode = "1.3.1"
2626

token-swap/program/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ num-derive = "0.3"
1919
num-traits = "0.2"
2020
solana-program = "1.7.4"
2121
spl-math = { version = "0.1", path = "../../libraries/math", features = [ "no-entrypoint" ] }
22-
spl-token = { version = "3.1", path = "../../token/program", features = [ "no-entrypoint" ] }
22+
spl-token = { version = "3.2", path = "../../token/program", features = [ "no-entrypoint" ] }
2323
thiserror = "1.0"
2424
arbitrary = { version = "0.4", features = ["derive"], optional = true }
2525
roots = { version = "0.0.7", optional = true }

token-swap/program/fuzz/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ honggfuzz = { version = "0.5.52" }
1313
arbitrary = { version = "0.4", features = ["derive"] }
1414
solana-program = "1.7.3"
1515
spl-math = { version = "0.1", path = "../../../libraries/math", features = [ "no-entrypoint" ] }
16-
spl-token = { version = "3.1", path = "../../../token/program", features = [ "no-entrypoint" ] }
16+
spl-token = { version = "3.2", path = "../../../token/program", features = [ "no-entrypoint" ] }
1717
spl-token-swap = { path = "..", features = ["fuzz", "no-entrypoint"] }
1818

1919
[[bin]]

token/cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ solana-client = "=1.7.4"
2020
solana-logger = "=1.7.4"
2121
solana-remote-wallet = "=1.7.4"
2222
solana-sdk = "=1.7.4"
23-
spl-token = { version = "3.1", path="../program", features = [ "no-entrypoint" ] }
23+
spl-token = { version = "3.2", path="../program", features = [ "no-entrypoint" ] }
2424
spl-associated-token-account = { version = "1.0", path="../../associated-token-account/program", features = [ "no-entrypoint" ] }
2525
spl-memo = { version = "3.0.1", path="../../memo/program", features = ["no-entrypoint"] }
2626

0 commit comments

Comments
 (0)