diff --git a/Cargo.lock b/Cargo.lock index d8d9e52607a..81e73e53714 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -8629,7 +8629,7 @@ dependencies = [ [[package]] name = "spl-token-client" -version = "0.12.1" +version = "0.13.0" dependencies = [ "async-trait", "bincode", diff --git a/single-pool/cli/Cargo.toml b/single-pool/cli/Cargo.toml index b9515616485..07164e1e067 100644 --- a/single-pool/cli/Cargo.toml +++ b/single-pool/cli/Cargo.toml @@ -30,7 +30,7 @@ solana-vote-program = "2.1.0" spl-token = { version = "7.0", path = "../../token/program", features = [ "no-entrypoint", ] } -spl-token-client = { version = "0.12.1", path = "../../token/client" } +spl-token-client = { version = "0.13.0", path = "../../token/client" } spl-single-pool = { version = "1.0.0", path = "../program", features = [ "no-entrypoint", ] } diff --git a/token-collection/program/Cargo.toml b/token-collection/program/Cargo.toml index 37f417e4e26..c26d5f3a7d9 100644 --- a/token-collection/program/Cargo.toml +++ b/token-collection/program/Cargo.toml @@ -25,7 +25,7 @@ spl-type-length-value = { version = "0.7.0", path = "../../libraries/type-length solana-program-test = "2.1.0" solana-sdk = "2.1.0" spl-discriminator = { version = "0.4.0", path = "../../libraries/discriminator" } -spl-token-client = { version = "0.12.1", path = "../../token/client" } +spl-token-client = { version = "0.13.0", path = "../../token/client" } [lib] crate-type = ["cdylib", "lib"] diff --git a/token-group/example/Cargo.toml b/token-group/example/Cargo.toml index 8f23b74e3db..669a310d514 100644 --- a/token-group/example/Cargo.toml +++ b/token-group/example/Cargo.toml @@ -22,7 +22,7 @@ spl-type-length-value = { version = "0.7.0", path = "../../libraries/type-length solana-program-test = "2.1.0" solana-sdk = "2.1.0" spl-discriminator = { version = "0.4.0", path = "../../libraries/discriminator" } -spl-token-client = { version = "0.12.1", path = "../../token/client" } +spl-token-client = { version = "0.13.0", path = "../../token/client" } spl-token-metadata-interface = { version = "0.6.0", path = "../../token-metadata/interface" } [lib] diff --git a/token-metadata/example/Cargo.toml b/token-metadata/example/Cargo.toml index 70a970caa71..b6a4ef30d6a 100644 --- a/token-metadata/example/Cargo.toml +++ b/token-metadata/example/Cargo.toml @@ -21,7 +21,7 @@ spl-pod = { version = "0.5.0", path = "../../libraries/pod" } [dev-dependencies] solana-program-test = "2.1.0" solana-sdk = "2.1.0" -spl-token-client = { version = "0.12.1", path = "../../token/client" } +spl-token-client = { version = "0.13.0", path = "../../token/client" } test-case = "3.3" [lib] diff --git a/token-upgrade/cli/Cargo.toml b/token-upgrade/cli/Cargo.toml index 86926ea235c..8143bbfcdcc 100644 --- a/token-upgrade/cli/Cargo.toml +++ b/token-upgrade/cli/Cargo.toml @@ -22,7 +22,7 @@ solana-sdk = "2.1.0" spl-associated-token-account-client = { version = "2.0.0", path = "../../associated-token-account/client" } spl-token = { version = "7.0", path = "../../token/program", features = ["no-entrypoint"] } spl-token-2022 = { version = "6.0.0", path = "../../token/program-2022", features = ["no-entrypoint"] } -spl-token-client = { version = "0.12.1", path = "../../token/client" } +spl-token-client = { version = "0.13.0", path = "../../token/client" } spl-token-upgrade = { version = "0.1", path = "../program", features = ["no-entrypoint"] } tokio = { version = "1", features = ["full"] } diff --git a/token-upgrade/program/Cargo.toml b/token-upgrade/program/Cargo.toml index 89fde119ae9..e1692fc2eae 100644 --- a/token-upgrade/program/Cargo.toml +++ b/token-upgrade/program/Cargo.toml @@ -23,7 +23,7 @@ thiserror = "1.0" solana-program-test = "2.1.0" solana-sdk = "2.1.0" spl-token = { version = "7.0", path = "../../token/program", features = ["no-entrypoint"] } -spl-token-client = { version = "0.12.1", path = "../../token/client" } +spl-token-client = { version = "0.13.0", path = "../../token/client" } test-case = "3.3" [lib] diff --git a/token/cli/Cargo.toml b/token/cli/Cargo.toml index a03ba3831a3..15017688d82 100644 --- a/token/cli/Cargo.toml +++ b/token/cli/Cargo.toml @@ -35,7 +35,7 @@ spl-token = { version = "7.0", path = "../program", features = [ spl-token-2022 = { version = "6.0.0", path = "../program-2022", features = [ "no-entrypoint", ] } -spl-token-client = { version = "0.12.1", path = "../client" } +spl-token-client = { version = "0.13.0", path = "../client" } spl-token-confidential-transfer-proof-generation = { version = "0.2.0", path = "../confidential-transfer/proof-generation" } spl-token-metadata-interface = { version = "0.6.0", path = "../../token-metadata/interface" } spl-token-group-interface = { version = "0.5.0", path = "../../token-group/interface" } diff --git a/token/client/Cargo.toml b/token/client/Cargo.toml index 4b6aecfc0c1..531e1d8e4ac 100644 --- a/token/client/Cargo.toml +++ b/token/client/Cargo.toml @@ -5,7 +5,7 @@ edition = "2021" license = "Apache-2.0" name = "spl-token-client" repository = "https://github.com/solana-labs/solana-program-library" -version = "0.12.1" +version = "0.13.0" [dependencies] async-trait = "0.1" diff --git a/token/program-2022-test/Cargo.toml b/token/program-2022-test/Cargo.toml index 69851237689..7ec54de5a67 100644 --- a/token/program-2022-test/Cargo.toml +++ b/token/program-2022-test/Cargo.toml @@ -41,7 +41,7 @@ spl-instruction-padding = { version = "0.3.0", path = "../../instruction-padding "no-entrypoint", ] } spl-tlv-account-resolution = { version = "0.9.0", path = "../../libraries/tlv-account-resolution" } -spl-token-client = { version = "0.12.1", path = "../client" } +spl-token-client = { version = "0.13.0", path = "../client" } spl-token-group-interface = { version = "0.5.0", path = "../../token-group/interface" } spl-token-metadata-interface = { version = "0.6.0", path = "../../token-metadata/interface" } spl-transfer-hook-example = { version = "0.6", path = "../transfer-hook/example", features = [ diff --git a/token/transfer-hook/cli/Cargo.toml b/token/transfer-hook/cli/Cargo.toml index 7023eb1cb0a..cd744115980 100644 --- a/token/transfer-hook/cli/Cargo.toml +++ b/token/transfer-hook/cli/Cargo.toml @@ -29,7 +29,7 @@ serde_yaml = "0.9.34" [dev-dependencies] solana-test-validator = "2.1.0" spl-token-2022 = { version = "6.0.0", path = "../../program-2022", features = ["no-entrypoint"] } -spl-token-client = { version = "0.12.1", path = "../../client" } +spl-token-client = { version = "0.13.0", path = "../../client" } spl-transfer-hook-example = { version = "0.6.0", path = "../example" } [[bin]]