Cargo.toml 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. [package]
  2. name = "anchor-lang"
  3. version = "0.26.0"
  4. authors = ["Serum Foundation <foundation@projectserum.com>"]
  5. repository = "https://github.com/coral-xyz/anchor"
  6. rust-version = "1.59"
  7. edition = "2021"
  8. license = "Apache-2.0"
  9. description = "Solana Sealevel eDSL"
  10. [features]
  11. allow-missing-optionals = ["anchor-derive-accounts/allow-missing-optionals"]
  12. init-if-needed = ["anchor-derive-accounts/init-if-needed"]
  13. derive = []
  14. default = []
  15. anchor-debug = [
  16. "anchor-attribute-access-control/anchor-debug",
  17. "anchor-attribute-account/anchor-debug",
  18. "anchor-attribute-constant/anchor-debug",
  19. "anchor-attribute-error/anchor-debug",
  20. "anchor-attribute-event/anchor-debug",
  21. "anchor-attribute-interface/anchor-debug",
  22. "anchor-attribute-program/anchor-debug",
  23. "anchor-attribute-program/anchor-debug",
  24. "anchor-attribute-state/anchor-debug",
  25. "anchor-derive-accounts/anchor-debug"
  26. ]
  27. [dependencies]
  28. anchor-attribute-access-control = { path = "./attribute/access-control", version = "0.26.0" }
  29. anchor-attribute-account = { path = "./attribute/account", version = "0.26.0" }
  30. anchor-attribute-constant = { path = "./attribute/constant", version = "0.26.0" }
  31. anchor-attribute-error = { path = "./attribute/error", version = "0.26.0" }
  32. anchor-attribute-program = { path = "./attribute/program", version = "0.26.0" }
  33. anchor-attribute-state = { path = "./attribute/state", version = "0.26.0" }
  34. anchor-attribute-interface = { path = "./attribute/interface", version = "0.26.0" }
  35. anchor-attribute-event = { path = "./attribute/event", version = "0.26.0" }
  36. anchor-derive-accounts = { path = "./derive/accounts", version = "0.26.0" }
  37. arrayref = "0.3.6"
  38. base64 = "0.13.0"
  39. borsh = "0.9"
  40. bytemuck = "1.4.0"
  41. solana-program = "1.13.5"
  42. thiserror = "1.0.20"
  43. bincode = "1.3.3"