Cargo.toml 1.0 KB

123456789101112131415161718192021222324252627
  1. [package]
  2. name = "anchor-lang"
  3. version = "0.4.3"
  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. [dependencies]
  13. anchor-attribute-access-control = { path = "./attribute/access-control", version = "0.4.3" }
  14. anchor-attribute-account = { path = "./attribute/account", version = "0.4.3" }
  15. anchor-attribute-error = { path = "./attribute/error", version = "0.4.3" }
  16. anchor-attribute-program = { path = "./attribute/program", version = "0.4.3" }
  17. anchor-attribute-state = { path = "./attribute/state", version = "0.4.3" }
  18. anchor-attribute-interface = { path = "./attribute/interface", version = "0.4.3" }
  19. anchor-attribute-event = { path = "./attribute/event", version = "0.4.3" }
  20. anchor-derive-accounts = { path = "./derive/accounts", version = "0.4.3" }
  21. base64 = "0.13.0"
  22. borsh = "0.8.2"
  23. bytemuck = "1.4.0"
  24. solana-program = "1.6.6"
  25. thiserror = "1.0.20"