Cargo.toml 1.6 KB

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