From a0b2ea1350c18dc4b8e13e5638ed838613d2243e Mon Sep 17 00:00:00 2001 From: Jon C Date: Mon, 31 Aug 2026 13:14:01 +0200 Subject: [PATCH] tlv-account-resolution: Bump list-view dependency #### Problem On some dependabot PRs, the bump on tlv-account-resolution is failing to build against spl-list-view v0.1.0. See [this example](https://github.com/solana-program/transfer-hook/pull/157). #### Summary of changes Bump the dep requirement in tlv-account-resolution. --- tlv-account-resolution/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tlv-account-resolution/Cargo.toml b/tlv-account-resolution/Cargo.toml index 6f22b06..25ccd26 100644 --- a/tlv-account-resolution/Cargo.toml +++ b/tlv-account-resolution/Cargo.toml @@ -21,7 +21,7 @@ solana-instruction = { version = "3.0.0", features = ["std"] } solana-program-error = "3.0.0" solana-pubkey = { version = "3.0.0", features = ["curve25519"] } spl-discriminator = { version = "0.5.1", path = "../discriminator" } -spl-list-view = { version = "0.1.0", path = "../list-view" } +spl-list-view = { version = "0.1.1", path = "../list-view" } spl-pod = { version = "0.7.2", path = "../pod" } spl-type-length-value = { version = "0.9.0", path = "../type-length-value" } thiserror = "2.0"