Cargo.toml 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. [package]
  2. name = "anchor-lang"
  3. version = "0.22.0"
  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. init-if-needed = ["anchor-derive-accounts/init-if-needed"]
  11. derive = []
  12. default = []
  13. deprecated-layout = [
  14. "anchor-common/deprecated-layout",
  15. "anchor-attribute-account/deprecated-layout",
  16. "anchor-attribute-event/deprecated-layout",
  17. ]
  18. anchor-debug = [
  19. "anchor-attribute-access-control/anchor-debug",
  20. "anchor-attribute-account/anchor-debug",
  21. "anchor-attribute-constant/anchor-debug",
  22. "anchor-attribute-error/anchor-debug",
  23. "anchor-attribute-event/anchor-debug",
  24. "anchor-attribute-interface/anchor-debug",
  25. "anchor-attribute-program/anchor-debug",
  26. "anchor-attribute-program/anchor-debug",
  27. "anchor-attribute-state/anchor-debug",
  28. "anchor-derive-accounts/anchor-debug"
  29. ]
  30. [dependencies]
  31. anchor-attribute-access-control = { path = "./attribute/access-control", version = "0.22.0" }
  32. anchor-attribute-account = { path = "./attribute/account", version = "0.22.0" }
  33. anchor-attribute-constant = { path = "./attribute/constant", version = "0.22.0" }
  34. anchor-attribute-error = { path = "./attribute/error", version = "0.22.0" }
  35. anchor-attribute-program = { path = "./attribute/program", version = "0.22.0" }
  36. anchor-attribute-state = { path = "./attribute/state", version = "0.22.0" }
  37. anchor-attribute-interface = { path = "./attribute/interface", version = "0.22.0" }
  38. anchor-attribute-event = { path = "./attribute/event", version = "0.22.0" }
  39. anchor-derive-accounts = { path = "./derive/accounts", version = "0.22.0" }
  40. anchor-common = { path = "./common", version = "0.22.0" }
  41. arrayref = "0.3.6"
  42. base64 = "0.13.0"
  43. borsh = "0.9"
  44. bytemuck = "1.4.0"
  45. solana-program = "1.8.5"
  46. thiserror = "1.0.20"
  47. bincode = "1.3.3"