Cargo.toml 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. [package]
  2. name = "spl-transfer-hook-interface"
  3. version = "1.0.0"
  4. description = "Solana Program Library Transfer Hook Interface"
  5. documentation = "https://docs.rs/spl-transfer-hook-interface"
  6. authors = { workspace = true }
  7. repository = { workspace = true }
  8. homepage = { workspace = true }
  9. license = { workspace = true }
  10. edition = { workspace = true }
  11. [dependencies]
  12. arrayref = "0.3.9"
  13. bytemuck = { version = "1.23.2", features = ["derive"] }
  14. num-derive = "0.4"
  15. num-traits = "0.2"
  16. solana-account-info = "3.0.0"
  17. solana-cpi = "3.0.0"
  18. solana-instruction = { version = "3.0.0", features = ["std"] }
  19. solana-msg = "3.0.0"
  20. solana-program-error = "3.0.0"
  21. solana-pubkey = { version = "3.0.0", features = ["curve25519"] }
  22. solana-sdk-ids = "3.0.0"
  23. solana-system-interface = "2.0.0"
  24. spl-discriminator = "0.5.1"
  25. spl-program-error = "0.8.0"
  26. spl-tlv-account-resolution = "0.11.0"
  27. spl-type-length-value = "0.9.0"
  28. spl-pod = "0.7.1"
  29. thiserror = "2.0"
  30. [lib]
  31. crate-type = ["lib"]
  32. [lints]
  33. workspace = true
  34. [dev-dependencies]
  35. solana-program = "2.3.0"
  36. tokio = { version = "1.47.1", features = ["full"] }
  37. [package.metadata.docs.rs]
  38. targets = ["x86_64-unknown-linux-gnu"]