Cargo.toml 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  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.60"
  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-program/anchor-debug",
  22. "anchor-attribute-program/anchor-debug",
  23. "anchor-derive-accounts/anchor-debug"
  24. ]
  25. [dependencies]
  26. anchor-attribute-access-control = { path = "./attribute/access-control", version = "0.26.0" }
  27. anchor-attribute-account = { path = "./attribute/account", version = "0.26.0" }
  28. anchor-attribute-constant = { path = "./attribute/constant", version = "0.26.0" }
  29. anchor-attribute-error = { path = "./attribute/error", version = "0.26.0" }
  30. anchor-attribute-program = { path = "./attribute/program", version = "0.26.0" }
  31. anchor-attribute-event = { path = "./attribute/event", version = "0.26.0" }
  32. anchor-derive-accounts = { path = "./derive/accounts", version = "0.26.0" }
  33. anchor-derive-space = { path = "./derive/space", version = "0.26.0" }
  34. arrayref = "0.3.6"
  35. base64 = "0.13.0"
  36. borsh = "0.9"
  37. bytemuck = "1.4.0"
  38. solana-program = "1.14.16"
  39. thiserror = "1.0.20"
  40. bincode = "1.3.3"