Skip to content
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
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,11 @@ anchor-spl = { version = "1.1.2", features = [
"token_2022",
] }

spl-tlv-account-resolution = "0.11.1"
# 0.11.3 or later. 0.11.2 pulled in spl-list-view 0.1.0, which was written
# against spl-pod 0.7.2's `PodLength` and stopped compiling once spl-pod 0.7.3
# relaxed that trait's error type. Upstream fixed it in 0.11.3 the same day, but a
# lockfile made in that window still holds the broken pair; this floor forces it past.
spl-tlv-account-resolution = "0.11.3"
spl-transfer-hook-interface = { version = "2.1.0" }
spl-discriminator = "0.5.1"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,11 @@ anchor-lang = "1.1.2"
anchor-spl = "1.1.2"
# SPL crates v3.x-compatible - uses solana-program-error 3.x matching anchor-lang 1.0
spl-discriminator = "0.5.2"
spl-tlv-account-resolution = "0.11.1"
# 0.11.3 or later. 0.11.2 pulled in spl-list-view 0.1.0, which was written
# against spl-pod 0.7.2's `PodLength` and stopped compiling once spl-pod 0.7.3
# relaxed that trait's error type. Upstream fixed it in 0.11.3 the same day, but a
# lockfile made in that window still holds the broken pair; this floor forces it past.
spl-tlv-account-resolution = "0.11.3"
spl-transfer-hook-interface = "2.1.0"

[dev-dependencies]
Expand Down
Loading