diff --git a/Cargo.lock b/Cargo.lock index f801264c5b8..961795ced07 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -7330,7 +7330,7 @@ dependencies = [ "spl-pod 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "spl-token 4.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "spl-token-metadata-interface 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "spl-transfer-hook-interface 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "spl-transfer-hook-interface 0.3.0", "spl-type-length-value 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "thiserror", ] @@ -7361,7 +7361,7 @@ dependencies = [ "spl-token 4.0.0", "spl-token-group-interface", "spl-token-metadata-interface 0.2.0", - "spl-transfer-hook-interface 0.3.0", + "spl-transfer-hook-interface 0.4.0", "spl-type-length-value 0.3.0", "thiserror", ] @@ -7385,7 +7385,7 @@ dependencies = [ "spl-token-group-interface", "spl-token-metadata-interface 0.2.0", "spl-transfer-hook-example", - "spl-transfer-hook-interface 0.3.0", + "spl-transfer-hook-interface 0.4.0", "test-case", "walkdir", ] @@ -7447,7 +7447,7 @@ dependencies = [ "spl-token-2022 1.0.0", "spl-token-group-interface", "spl-token-metadata-interface 0.2.0", - "spl-transfer-hook-interface 0.3.0", + "spl-transfer-hook-interface 0.4.0", "thiserror", ] @@ -7673,7 +7673,7 @@ dependencies = [ "spl-tlv-account-resolution 0.4.0", "spl-token-2022 1.0.0", "spl-token-client", - "spl-transfer-hook-interface 0.3.0", + "spl-transfer-hook-interface 0.4.0", "strum 0.25.0", "strum_macros 0.25.3", "tokio", @@ -7681,7 +7681,7 @@ dependencies = [ [[package]] name = "spl-transfer-hook-example" -version = "0.3.0" +version = "0.4.0" dependencies = [ "arrayref", "solana-program", @@ -7689,38 +7689,38 @@ dependencies = [ "solana-sdk", "spl-tlv-account-resolution 0.4.0", "spl-token-2022 1.0.0", - "spl-transfer-hook-interface 0.3.0", + "spl-transfer-hook-interface 0.4.0", "spl-type-length-value 0.3.0", ] [[package]] name = "spl-transfer-hook-interface" version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "051d31803f873cabe71aec3c1b849f35248beae5d19a347d93a5c9cccc5d5a9b" dependencies = [ "arrayref", "bytemuck", "solana-program", - "spl-discriminator 0.1.0", - "spl-pod 0.1.0", - "spl-program-error 0.3.0", - "spl-tlv-account-resolution 0.4.0", - "spl-type-length-value 0.3.0", + "spl-discriminator 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "spl-pod 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "spl-program-error 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "spl-tlv-account-resolution 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "spl-type-length-value 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "spl-transfer-hook-interface" -version = "0.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "051d31803f873cabe71aec3c1b849f35248beae5d19a347d93a5c9cccc5d5a9b" +version = "0.4.0" dependencies = [ "arrayref", "bytemuck", "solana-program", - "spl-discriminator 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "spl-pod 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "spl-program-error 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "spl-tlv-account-resolution 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "spl-type-length-value 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "spl-discriminator 0.1.0", + "spl-pod 0.1.0", + "spl-program-error 0.3.0", + "spl-tlv-account-resolution 0.4.0", + "spl-type-length-value 0.3.0", ] [[package]] diff --git a/token/client/Cargo.toml b/token/client/Cargo.toml index 8e5a84e3141..44c204ba9cf 100644 --- a/token/client/Cargo.toml +++ b/token/client/Cargo.toml @@ -26,7 +26,7 @@ spl-token = { version = "4.0", path="../program", features = [ "no-entrypoint" ] spl-token-2022 = { version = "1.0", path="../program-2022" } spl-token-group-interface = { version = "0.1", path="../../token-group/interface" } spl-token-metadata-interface = { version = "0.2", path="../../token-metadata/interface" } -spl-transfer-hook-interface = { version = "0.3", path="../transfer-hook/interface" } +spl-transfer-hook-interface = { version = "0.4", path="../transfer-hook/interface" } thiserror = "1.0" [features] diff --git a/token/program-2022-test/Cargo.toml b/token/program-2022-test/Cargo.toml index b4ef5b9bbdc..4e70388d25c 100644 --- a/token/program-2022-test/Cargo.toml +++ b/token/program-2022-test/Cargo.toml @@ -30,6 +30,6 @@ spl-instruction-padding = { version = "0.1.0", path="../../instruction-padding/p spl-token-client = { version = "0.8", path = "../client" } spl-token-group-interface = { version = "0.1", path = "../../token-group/interface" } spl-token-metadata-interface = { version = "0.2", path = "../../token-metadata/interface" } -spl-transfer-hook-example = { version = "0.3", path="../transfer-hook/example", features = ["no-entrypoint"] } -spl-transfer-hook-interface = { version = "0.3", path="../transfer-hook/interface" } +spl-transfer-hook-example = { version = "0.4", path="../transfer-hook/example", features = ["no-entrypoint"] } +spl-transfer-hook-interface = { version = "0.4", path="../transfer-hook/interface" } test-case = "3.3" diff --git a/token/program-2022/Cargo.toml b/token/program-2022/Cargo.toml index e354673c5a5..7569e9acb66 100644 --- a/token/program-2022/Cargo.toml +++ b/token/program-2022/Cargo.toml @@ -31,7 +31,7 @@ spl-memo = { version = "4.0.0", path = "../../memo/program", features = [ "no-en spl-token = { version = "4.0", path = "../program", features = ["no-entrypoint"] } spl-token-group-interface = { version = "0.1.0", path = "../../token-group/interface" } spl-token-metadata-interface = { version = "0.2.0", path = "../../token-metadata/interface" } -spl-transfer-hook-interface = { version = "0.3.0", path = "../transfer-hook/interface" } +spl-transfer-hook-interface = { version = "0.4.0", path = "../transfer-hook/interface" } spl-type-length-value = { version = "0.3.0", path = "../../libraries/type-length-value" } spl-pod = { version = "0.1.0", path = "../../libraries/pod" } thiserror = "1.0" diff --git a/token/transfer-hook/cli/Cargo.toml b/token/transfer-hook/cli/Cargo.toml index 289ee7fc389..be8155fc7f2 100644 --- a/token/transfer-hook/cli/Cargo.toml +++ b/token/transfer-hook/cli/Cargo.toml @@ -17,7 +17,7 @@ solana-client = "=1.17.6" solana-logger = "=1.17.6" solana-remote-wallet = "=1.17.6" solana-sdk = "=1.17.6" -spl-transfer-hook-interface = { version = "0.3", path = "../interface" } +spl-transfer-hook-interface = { version = "0.4", path = "../interface" } spl-tlv-account-resolution = { version = "0.4" , path = "../../../libraries/tlv-account-resolution" } strum = "0.25" strum_macros = "0.25" diff --git a/token/transfer-hook/example/Cargo.toml b/token/transfer-hook/example/Cargo.toml index ff88c70d682..0d2e25adfba 100644 --- a/token/transfer-hook/example/Cargo.toml +++ b/token/transfer-hook/example/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "spl-transfer-hook-example" -version = "0.3.0" +version = "0.4.0" description = "Solana Program Library Transfer Hook Example Program" authors = ["Solana Labs Maintainers "] repository = "https://github.com/solana-labs/solana-program-library" @@ -16,7 +16,7 @@ arrayref = "0.3.7" solana-program = "1.17.6" spl-tlv-account-resolution = { version = "0.4" , path = "../../../libraries/tlv-account-resolution" } spl-token-2022 = { version = "1.0", path = "../../program-2022", features = ["no-entrypoint"] } -spl-transfer-hook-interface = { version = "0.3" , path = "../interface" } +spl-transfer-hook-interface = { version = "0.4" , path = "../interface" } spl-type-length-value = { version = "0.3" , path = "../../../libraries/type-length-value" } [dev-dependencies] diff --git a/token/transfer-hook/interface/Cargo.toml b/token/transfer-hook/interface/Cargo.toml index c0db5b18b5d..9c064f338c8 100644 --- a/token/transfer-hook/interface/Cargo.toml +++ b/token/transfer-hook/interface/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "spl-transfer-hook-interface" -version = "0.3.0" +version = "0.4.0" description = "Solana Program Library Transfer Hook Interface" authors = ["Solana Labs Maintainers "] repository = "https://github.com/solana-labs/solana-program-library"