1234567891011121314151617181920212223 |
- [package]
- name = "transfer-hook"
- version = "0.1.0"
- description = "Created with Anchor"
- edition = "2021"
- [lib]
- crate-type = ["cdylib", "lib"]
- name = "transfer_hook"
- [features]
- no-entrypoint = []
- no-idl = []
- cpi = ["no-entrypoint"]
- default = []
- idl-build = ["anchor-lang/idl-build", "anchor-spl/idl-build"]
- [dependencies]
- anchor-lang = { path = "../../../../../lang", features = ["interface-instructions"] }
- anchor-spl = { path = "../../../../../spl" }
- spl-discriminator = "0.4"
- spl-tlv-account-resolution = "0.9"
- spl-transfer-hook-interface = "0.9"
|