Cargo.toml 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. [package]
  2. name = "anchor-lang"
  3. version = "0.11.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. derive = []
  11. default = []
  12. anchor-debug = [
  13. "anchor-attribute-access-control/anchor-debug",
  14. "anchor-attribute-account/anchor-debug",
  15. "anchor-attribute-error/anchor-debug",
  16. "anchor-attribute-event/anchor-debug",
  17. "anchor-attribute-interface/anchor-debug",
  18. "anchor-attribute-program/anchor-debug",
  19. "anchor-attribute-program/anchor-debug",
  20. "anchor-attribute-state/anchor-debug",
  21. "anchor-derive-accounts/anchor-debug"
  22. ]
  23. [dependencies]
  24. anchor-attribute-access-control = { path = "./attribute/access-control", version = "0.11.0" }
  25. anchor-attribute-account = { path = "./attribute/account", version = "0.11.0" }
  26. anchor-attribute-error = { path = "./attribute/error", version = "0.11.0" }
  27. anchor-attribute-program = { path = "./attribute/program", version = "0.11.0" }
  28. anchor-attribute-state = { path = "./attribute/state", version = "0.11.0" }
  29. anchor-attribute-interface = { path = "./attribute/interface", version = "0.11.0" }
  30. anchor-attribute-event = { path = "./attribute/event", version = "0.11.0" }
  31. anchor-derive-accounts = { path = "./derive/accounts", version = "0.11.0" }
  32. base64 = "0.13.0"
  33. borsh = "0.9"
  34. bytemuck = "1.4.0"
  35. solana-program = "1.7.4"
  36. thiserror = "1.0.20"