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

Commit 85a1a5d

Browse files
authored
token-client: Bump for token-cli release (#6636)
1 parent d015e26 commit 85a1a5d

File tree

11 files changed

+11
-11
lines changed

11 files changed

+11
-11
lines changed

Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

single-pool/cli/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ solana-vote-program = ">=1.18.11,<=2"
3030
spl-token = { version = "4.0", path = "../../token/program", features = [
3131
"no-entrypoint",
3232
] }
33-
spl-token-client = { version = "0.9.2", path = "../../token/client" }
33+
spl-token-client = { version = "0.10.0", path = "../../token/client" }
3434
spl-associated-token-account = { version = "3.0.2", path = "../../associated-token-account/program", features = [
3535
"no-entrypoint",
3636
] }

token-collection/program/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ spl-type-length-value = { version = "0.4.3", path = "../../libraries/type-length
2525
solana-program-test = ">=1.18.11,<=2"
2626
solana-sdk = ">=1.18.11,<=2"
2727
spl-discriminator = { version = "0.2.2", path = "../../libraries/discriminator" }
28-
spl-token-client = { version = "0.9.2", path = "../../token/client" }
28+
spl-token-client = { version = "0.10.0", path = "../../token/client" }
2929

3030
[lib]
3131
crate-type = ["cdylib", "lib"]

token-group/example/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ spl-type-length-value = { version = "0.4.3", path = "../../libraries/type-length
2222
solana-program-test = ">=1.18.11,<=2"
2323
solana-sdk = ">=1.18.11,<=2"
2424
spl-discriminator = { version = "0.2.2", path = "../../libraries/discriminator" }
25-
spl-token-client = { version = "0.9.2", path = "../../token/client" }
25+
spl-token-client = { version = "0.10.0", path = "../../token/client" }
2626
spl-token-metadata-interface = { version = "0.3.3", path = "../../token-metadata/interface" }
2727

2828
[lib]

token-metadata/example/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ spl-pod = { version = "0.2.2", path = "../../libraries/pod" }
2121
[dev-dependencies]
2222
solana-program-test = ">=1.18.11,<=2"
2323
solana-sdk = ">=1.18.11,<=2"
24-
spl-token-client = { version = "0.9.2", path = "../../token/client" }
24+
spl-token-client = { version = "0.10.0", path = "../../token/client" }
2525
test-case = "3.3"
2626

2727
[lib]

token-upgrade/cli/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ solana-sdk = ">=1.18.11,<=2"
2222
spl-associated-token-account = { version = "3.0.2", path = "../../associated-token-account/program", features = ["no-entrypoint"] }
2323
spl-token = { version = "4.0", path = "../../token/program", features = ["no-entrypoint"] }
2424
spl-token-2022 = { version = "3.0.2", path = "../../token/program-2022", features = ["no-entrypoint"] }
25-
spl-token-client = { version = "0.9.2", path = "../../token/client" }
25+
spl-token-client = { version = "0.10.0", path = "../../token/client" }
2626
spl-token-upgrade = { version = "0.1", path = "../program", features = ["no-entrypoint"] }
2727
tokio = { version = "1", features = ["full"] }
2828

token-upgrade/program/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ thiserror = "1.0"
2323
solana-program-test = ">=1.18.11,<=2"
2424
solana-sdk = ">=1.18.11,<=2"
2525
spl-token = { version = "4.0", path = "../../token/program", features = ["no-entrypoint"] }
26-
spl-token-client = { version = "0.9.2", path = "../../token/client" }
26+
spl-token-client = { version = "0.10.0", path = "../../token/client" }
2727
test-case = "3.3"
2828

2929
[lib]

token/cli/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ spl-token = { version = "4.0", path = "../program", features = [
3434
spl-token-2022 = { version = "3.0.2", path = "../program-2022", features = [
3535
"no-entrypoint",
3636
] }
37-
spl-token-client = { version = "0.9.2", path = "../client" }
37+
spl-token-client = { version = "0.10.0", path = "../client" }
3838
spl-token-metadata-interface = { version = "0.3.3", path = "../../token-metadata/interface" }
3939
spl-token-group-interface = { version = "0.2.3", path = "../../token-group/interface" }
4040
spl-associated-token-account = { version = "3.0.2", path = "../../associated-token-account/program", features = [

token/client/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ edition = "2021"
55
license = "Apache-2.0"
66
name = "spl-token-client"
77
repository = "https://github.com/solana-labs/solana-program-library"
8-
version = "0.9.2"
8+
version = "0.10.0"
99

1010
[dependencies]
1111
async-trait = "0.1"

token/program-2022-test/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ spl-instruction-padding = { version = "0.1.1", path = "../../instruction-padding
3434
"no-entrypoint",
3535
] }
3636
spl-tlv-account-resolution = { version = "0.6.3", path = "../../libraries/tlv-account-resolution" }
37-
spl-token-client = { version = "0.9.2", path = "../client" }
37+
spl-token-client = { version = "0.10.0", path = "../client" }
3838
spl-token-group-interface = { version = "0.2.3", path = "../../token-group/interface" }
3939
spl-token-metadata-interface = { version = "0.3.3", path = "../../token-metadata/interface" }
4040
spl-transfer-hook-example = { version = "0.6", path = "../transfer-hook/example", features = [

token/transfer-hook/cli/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ serde_yaml = "0.9.34"
2929
[dev-dependencies]
3030
solana-test-validator = ">=1.18.11,<=2"
3131
spl-token-2022 = { version = "3.0.2", path = "../../program-2022", features = ["no-entrypoint"] }
32-
spl-token-client = { version = "0.9.2", path = "../../client" }
32+
spl-token-client = { version = "0.10.0", path = "../../client" }
3333

3434
[[bin]]
3535
name = "spl-transfer-hook"

0 commit comments

Comments
 (0)