12345678910111213141516171819202122232425262728 |
- [package]
- name = "anchor-attribute-program"
- version = "0.30.0"
- authors = ["Anchor Maintainers <accounts@200ms.io>"]
- repository = "https://github.com/coral-xyz/anchor"
- license = "Apache-2.0"
- description = "Anchor attribute macro for defining a program"
- rust-version = "1.60"
- edition = "2021"
- [lib]
- proc-macro = true
- [features]
- anchor-debug = ["anchor-syn/anchor-debug"]
- idl-build = ["anchor-syn/idl-build"]
- interface-instructions = ["anchor-syn/interface-instructions"]
- [dependencies]
- anchor-lang-idl = { path = "../../../idl", version = "0.1.0" }
- anchor-syn = { path = "../../syn", version = "0.30.0" }
- anyhow = "1"
- bs58 = "0.5"
- heck = "0.3"
- proc-macro2 = "1"
- quote = "1"
- serde_json = "1"
- syn = { version = "1", features = ["full"] }
|