1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- [package]
- name = "anchor-lang"
- version = "0.27.0"
- authors = ["Anchor Maintainers <accounts@200ms.io>"]
- repository = "https://github.com/coral-xyz/anchor"
- rust-version = "1.60"
- edition = "2021"
- license = "Apache-2.0"
- description = "Solana Sealevel eDSL"
- [features]
- allow-missing-optionals = ["anchor-derive-accounts/allow-missing-optionals"]
- init-if-needed = ["anchor-derive-accounts/init-if-needed"]
- derive = []
- default = []
- event-cpi = ["anchor-attribute-event/event-cpi"]
- anchor-debug = [
- "anchor-attribute-access-control/anchor-debug",
- "anchor-attribute-account/anchor-debug",
- "anchor-attribute-constant/anchor-debug",
- "anchor-attribute-error/anchor-debug",
- "anchor-attribute-event/anchor-debug",
- "anchor-attribute-program/anchor-debug",
- "anchor-attribute-program/anchor-debug",
- "anchor-derive-accounts/anchor-debug"
- ]
- [dependencies]
- anchor-attribute-access-control = { path = "./attribute/access-control", version = "0.27.0" }
- anchor-attribute-account = { path = "./attribute/account", version = "0.27.0" }
- anchor-attribute-constant = { path = "./attribute/constant", version = "0.27.0" }
- anchor-attribute-error = { path = "./attribute/error", version = "0.27.0" }
- anchor-attribute-event = { path = "./attribute/event", version = "0.27.0" }
- anchor-attribute-program = { path = "./attribute/program", version = "0.27.0" }
- anchor-derive-accounts = { path = "./derive/accounts", version = "0.27.0" }
- anchor-derive-space = { path = "./derive/space", version = "0.27.0" }
- arrayref = "0.3.6"
- base64 = "0.13.0"
- bincode = "1.3.3"
- borsh = "<0.11.0"
- bytemuck = "1.4.0"
- getrandom = { version = "0.2", features = ["custom"] }
- solana-program = "<1.17.0"
- thiserror = "1.0.20"
|