123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- [package]
- name = "anchor-lang"
- version = "0.29.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"
- [package.metadata.docs.rs]
- all-features = true
- rustdoc-args = ["--cfg", "docsrs"]
- [features]
- allow-missing-optionals = ["anchor-derive-accounts/allow-missing-optionals"]
- 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-derive-accounts/anchor-debug"
- ]
- derive = []
- event-cpi = ["anchor-attribute-event/event-cpi"]
- idl-build = [
- "anchor-attribute-account/idl-build",
- "anchor-attribute-constant/idl-build",
- "anchor-attribute-event/idl-build",
- "anchor-attribute-error/idl-build",
- "anchor-attribute-program/idl-build",
- "anchor-derive-accounts/idl-build",
- "anchor-derive-serde/idl-build",
- "anchor-idl/build",
- ]
- init-if-needed = ["anchor-derive-accounts/init-if-needed"]
- interface-instructions = ["anchor-attribute-program/interface-instructions"]
- [dependencies]
- anchor-attribute-access-control = { path = "./attribute/access-control", version = "0.29.0" }
- anchor-attribute-account = { path = "./attribute/account", version = "0.29.0" }
- anchor-attribute-constant = { path = "./attribute/constant", version = "0.29.0" }
- anchor-attribute-error = { path = "./attribute/error", version = "0.29.0" }
- anchor-attribute-event = { path = "./attribute/event", version = "0.29.0" }
- anchor-attribute-program = { path = "./attribute/program", version = "0.29.0" }
- anchor-derive-accounts = { path = "./derive/accounts", version = "0.29.0" }
- anchor-derive-serde = { path = "./derive/serde", version = "0.29.0" }
- anchor-derive-space = { path = "./derive/space", version = "0.29.0" }
- # `anchor-idl` should only be included with `idl-build` feature
- anchor-idl = { path = "../idl", version = "0.29.0", optional = true }
- arrayref = "0.3"
- base64 = "0.21"
- bincode = "1"
- borsh = ">=0.9, <0.11"
- bytemuck = "1"
- solana-program = "1.16"
- thiserror = "1"
- # TODO: Remove. This crate has been added to fix a build error with the 1.16.0 release.
- getrandom = { version = "0.2", features = ["custom"] }
|