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

pod: Bump to 0.3.0 for Solana v2 compat #6917

Merged
merged 1 commit into from
Jun 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
52 changes: 26 additions & 26 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion libraries/pod/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "spl-pod"
version = "0.2.2"
version = "0.3.0"
description = "Solana Program Library Plain Old Data (Pod)"
authors = ["Solana Labs Maintainers <[email protected]>"]
repository = "https://github.com/solana-labs/solana-program-library"
Expand Down
2 changes: 1 addition & 1 deletion libraries/tlv-account-resolution/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ solana-program = "2.0.0"
spl-discriminator = { version = "0.3.0", path = "../discriminator" }
spl-program-error = { version = "0.5.0", path = "../program-error" }
spl-type-length-value = { version = "0.4.3", path = "../type-length-value" }
spl-pod = { version = "0.2.2", path = "../pod" }
spl-pod = { version = "0.3.0", path = "../pod" }

[dev-dependencies]
futures = "0.3.30"
Expand Down
2 changes: 1 addition & 1 deletion libraries/type-length-value/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ solana-program = "2.0.0"
spl-discriminator = { version = "0.3.0", path = "../discriminator" }
spl-program-error = { version = "0.5.0", path = "../program-error" }
spl-type-length-value-derive = { version = "0.1", path = "./derive", optional = true }
spl-pod = { version = "0.2.2", path = "../pod" }
spl-pod = { version = "0.3.0", path = "../pod" }

[lib]
crate-type = ["cdylib", "lib"]
Expand Down
2 changes: 1 addition & 1 deletion record/program/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ num-derive = "0.4"
num-traits = "0.2"
solana-program = "2.0.0"
thiserror = "1.0"
spl-pod = { version = "0.2.2", path = "../../libraries/pod" }
spl-pod = { version = "0.3.0", path = "../../libraries/pod" }

[dev-dependencies]
solana-program-test = "2.0.0"
Expand Down
2 changes: 1 addition & 1 deletion stake-pool/program/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ solana-security-txt = "1.1.1"
spl-math = { version = "0.2", path = "../../libraries/math", features = [
"no-entrypoint",
] }
spl-pod = { version = "0.2.2", path = "../../libraries/pod", features = [
spl-pod = { version = "0.3.0", path = "../../libraries/pod", features = [
"borsh",
] }
spl-token-2022 = { version = "3.0.2", path = "../../token/program-2022", features = [
Expand Down
2 changes: 1 addition & 1 deletion token-collection/program/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ test-sbf = []

[dependencies]
solana-program = "2.0.0"
spl-pod = { version = "0.2.2", path = "../../libraries/pod" }
spl-pod = { version = "0.3.0", path = "../../libraries/pod" }
spl-program-error = { version = "0.5.0" , path = "../../libraries/program-error" }
spl-token-2022 = { version = "3.0.2", path = "../../token/program-2022", features = ["no-entrypoint"] }
spl-token-group-example = { version = "0.2", path = "../../token-group/example", features = ["no-entrypoint"] }
Expand Down
2 changes: 1 addition & 1 deletion token-group/example/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ test-sbf = []

[dependencies]
solana-program = "2.0.0"
spl-pod = { version = "0.2.2", path = "../../libraries/pod" }
spl-pod = { version = "0.3.0", path = "../../libraries/pod" }
spl-token-2022 = { version = "3.0.2", path = "../../token/program-2022", features = ["no-entrypoint"] }
spl-token-group-interface = { version = "0.2.3", path = "../interface" }
spl-type-length-value = { version = "0.4.3", path = "../../libraries/type-length-value" }
Expand Down
2 changes: 1 addition & 1 deletion token-group/interface/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ edition = "2021"
bytemuck = "1.16.1"
solana-program = "2.0.0"
spl-discriminator = { version = "0.3.0" , path = "../../libraries/discriminator" }
spl-pod = { version = "0.2.2" , path = "../../libraries/pod", features = ["borsh"] }
spl-pod = { version = "0.3.0" , path = "../../libraries/pod", features = ["borsh"] }
spl-program-error = { version = "0.5.0" , path = "../../libraries/program-error" }

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion token-metadata/example/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ solana-program = "2.0.0"
spl-token-2022 = { version = "3.0.2", path = "../../token/program-2022", features = ["no-entrypoint"] }
spl-token-metadata-interface = { version = "0.3.3", path = "../interface" }
spl-type-length-value = { version = "0.4.3" , path = "../../libraries/type-length-value" }
spl-pod = { version = "0.2.2", path = "../../libraries/pod" }
spl-pod = { version = "0.3.0", path = "../../libraries/pod" }

[dev-dependencies]
solana-program-test = "2.0.0"
Expand Down
2 changes: 1 addition & 1 deletion token-metadata/interface/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ solana-program = "2.0.0"
spl-discriminator = { version = "0.3.0", path = "../../libraries/discriminator" }
spl-program-error = { version = "0.5.0", path = "../../libraries/program-error" }
spl-type-length-value = { version = "0.4.3", path = "../../libraries/type-length-value" }
spl-pod = { version = "0.2.2", path = "../../libraries/pod", features = [
spl-pod = { version = "0.3.0", path = "../../libraries/pod", features = [
"borsh",
] }

Expand Down
2 changes: 1 addition & 1 deletion token/program-2022-test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ spl-associated-token-account = { version = "3.0.2", path = "../../associated-tok
spl-memo = { version = "5.0.0", path = "../../memo/program", features = [
"no-entrypoint",
] }
spl-pod = { version = "0.2.2", path = "../../libraries/pod" }
spl-pod = { version = "0.3.0", path = "../../libraries/pod" }
spl-token-2022 = { version = "3.0.2", path = "../program-2022", features = [
"no-entrypoint",
] }
Expand Down
2 changes: 1 addition & 1 deletion token/program-2022/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ spl-token-group-interface = { version = "0.2.3", path = "../../token-group/inter
spl-token-metadata-interface = { version = "0.3.3", path = "../../token-metadata/interface" }
spl-transfer-hook-interface = { version = "0.6.3", path = "../transfer-hook/interface" }
spl-type-length-value = { version = "0.4.3", path = "../../libraries/type-length-value" }
spl-pod = { version = "0.2.2", path = "../../libraries/pod" }
spl-pod = { version = "0.3.0", path = "../../libraries/pod" }
thiserror = "1.0"
serde = { version = "1.0.203", optional = true }
serde_with = { version = "3.8.1", optional = true }
Expand Down
2 changes: 1 addition & 1 deletion token/transfer-hook/interface/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ spl-discriminator = { version = "0.3.0" , path = "../../../libraries/discriminat
spl-program-error = { version = "0.5.0" , path = "../../../libraries/program-error" }
spl-tlv-account-resolution = { version = "0.6.3" , path = "../../../libraries/tlv-account-resolution" }
spl-type-length-value = { version = "0.4.3" , path = "../../../libraries/type-length-value" }
spl-pod = { version = "0.2.2", path = "../../../libraries/pod" }
spl-pod = { version = "0.3.0", path = "../../../libraries/pod" }

[lib]
crate-type = ["cdylib", "lib"]
Expand Down
Loading