Bump spl-token-2022 version to 0.2.0
This commit is contained in:
parent
2e968115ab
commit
1b369e1cf7
|
@ -3890,7 +3890,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "spl-token-2022"
|
name = "spl-token-2022"
|
||||||
version = "0.1.0"
|
version = "0.2.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"arrayref",
|
"arrayref",
|
||||||
"bytemuck",
|
"bytemuck",
|
||||||
|
|
|
@ -17,7 +17,7 @@ borsh = "0.9.1"
|
||||||
num-derive = "0.3"
|
num-derive = "0.3"
|
||||||
num-traits = "0.2"
|
num-traits = "0.2"
|
||||||
solana-program = "1.9.5"
|
solana-program = "1.9.5"
|
||||||
spl-token = { version = "0.1", path = "../../token/program-2022", package = "spl-token-2022", features = ["no-entrypoint"] }
|
spl-token = { version = "0.2", path = "../../token/program-2022", package = "spl-token-2022", features = ["no-entrypoint"] }
|
||||||
thiserror = "1.0"
|
thiserror = "1.0"
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
|
|
|
@ -15,5 +15,5 @@ async-trait = "0.1"
|
||||||
solana-program-test = "=1.9.5"
|
solana-program-test = "=1.9.5"
|
||||||
solana-sdk = "=1.9.5"
|
solana-sdk = "=1.9.5"
|
||||||
spl-associated-token-account = { version = "1.0.5", path = "../../associated-token-account/program" }
|
spl-associated-token-account = { version = "1.0.5", path = "../../associated-token-account/program" }
|
||||||
spl-token-2022 = { version = "0.1", path="../program-2022", features = ["no-entrypoint"] }
|
spl-token-2022 = { version = "0.2", path="../program-2022", features = ["no-entrypoint"] }
|
||||||
spl-token-client = { version = "0.0.1", path = "../rust" }
|
spl-token-client = { version = "0.0.1", path = "../rust" }
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "spl-token-2022"
|
name = "spl-token-2022"
|
||||||
version = "0.1.0"
|
version = "0.2.0"
|
||||||
description = "Solana Program Library Token 2022"
|
description = "Solana Program Library Token 2022"
|
||||||
authors = ["Solana Maintainers <maintainers@solana.foundation>"]
|
authors = ["Solana Maintainers <maintainers@solana.foundation>"]
|
||||||
repository = "https://github.com/solana-labs/solana-program-library"
|
repository = "https://github.com/solana-labs/solana-program-library"
|
||||||
|
|
|
@ -15,5 +15,5 @@ solana-sdk = "=1.9.5"
|
||||||
# We never want the entrypoint for ATA, but we want the entrypoint for token when
|
# We never want the entrypoint for ATA, but we want the entrypoint for token when
|
||||||
# testing token
|
# testing token
|
||||||
spl-associated-token-account = { version = "1.0.5", path = "../../associated-token-account/program", features = ["no-entrypoint"] }
|
spl-associated-token-account = { version = "1.0.5", path = "../../associated-token-account/program", features = ["no-entrypoint"] }
|
||||||
spl-token-2022 = { version = "0.1", path="../program-2022" }
|
spl-token-2022 = { version = "0.2", path="../program-2022" }
|
||||||
thiserror = "1.0"
|
thiserror = "1.0"
|
||||||
|
|
Loading…
Reference in New Issue