Cargo.toml 1.7 KB

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