bump token-cli to 2.2 and token-client to 0.3

This commit is contained in:
hanako mumei 2022-11-21 11:41:02 -08:00 committed by hana
parent b253f36dd9
commit 0de5f7339a
6 changed files with 8 additions and 8 deletions

4
Cargo.lock generated
View File

@ -6313,7 +6313,7 @@ dependencies = [
[[package]]
name = "spl-token-cli"
version = "2.1.1"
version = "2.2.0"
dependencies = [
"assert_cmd",
"clap 2.34.0",
@ -6347,7 +6347,7 @@ dependencies = [
[[package]]
name = "spl-token-client"
version = "0.2.1"
version = "0.3.0"
dependencies = [
"async-trait",
"solana-cli-output",

View File

@ -22,7 +22,7 @@ solana-sdk = "1.14.6"
spl-associated-token-account = { version = "1.1", path = "../../associated-token-account/program", features = ["no-entrypoint"] }
spl-token = { version = "3.5", path = "../../token/program", features = ["no-entrypoint"] }
spl-token-2022 = { version = "0.5", path = "../../token/program-2022", features = ["no-entrypoint"] }
spl-token-client = { version = "0.2.1", path = "../../token/client" }
spl-token-client = { version = "0.3", path = "../../token/client" }
spl-token-upgrade = { version = "0.1", path = "../program", features = ["no-entrypoint"] }
tokio = { version = "1", features = ["full"] }

View File

@ -23,7 +23,7 @@ thiserror = "1.0"
solana-program-test = "1.14.6"
solana-sdk = "1.14.6"
spl-token = { version = "3.5", path = "../../token/program", features = ["no-entrypoint"] }
spl-token-client = { version = "0.2.1", path = "../../token/client" }
spl-token-client = { version = "0.3", path = "../../token/client" }
test-case = "2.2"
[lib]

View File

@ -6,7 +6,7 @@ homepage = "https://spl.solana.com/token"
license = "Apache-2.0"
name = "spl-token-cli"
repository = "https://github.com/solana-labs/solana-program-library"
version = "2.1.1"
version = "2.2.0"
[build-dependencies]
walkdir = "2"
@ -29,7 +29,7 @@ solana-sdk = "=1.14.6"
solana-transaction-status = "=1.14.6"
spl-token = { version = "3.5", path="../program", features = [ "no-entrypoint" ] }
spl-token-2022 = { version = "0.5", path="../program-2022", features = [ "no-entrypoint" ] }
spl-token-client = { version = "0.2.1", path="../client" }
spl-token-client = { version = "0.3", path="../client" }
spl-associated-token-account = { version = "1.1", path="../../associated-token-account/program", features = [ "no-entrypoint" ] }
spl-memo = { version = "3.0.1", path="../../memo/program", features = ["no-entrypoint"] }
strum = "0.24"

View File

@ -5,7 +5,7 @@ edition = "2018"
license = "Apache-2.0"
name = "spl-token-client"
repository = "https://github.com/solana-labs/solana-program-library"
version = "0.2.1"
version = "0.3.0"
[dependencies]
async-trait = "0.1"

View File

@ -23,4 +23,4 @@ spl-associated-token-account = { version = "1.1", path = "../../associated-token
spl-memo = { version = "3.0.1", path = "../../memo/program", features = ["no-entrypoint"] }
spl-token-2022 = { version = "0.5", path="../program-2022", features = ["no-entrypoint"] }
spl-instruction-padding = { version = "0.1.0", path="../../instruction-padding/program", features = ["no-entrypoint"] }
spl-token-client = { version = "0.2.1", path = "../client" }
spl-token-client = { version = "0.3", path = "../client" }