Cargo.toml 1009 B

1234567891011121314151617181920212223242526
  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-derive-accounts = { path = "./derive/accounts", version = "0.4.3" }
  20. anchor-attribute-event = { path = "./attribute/event", version = "0.4.3" }
  21. borsh = "0.8.2"
  22. solana-program = "1.6.3"
  23. thiserror = "1.0.20"
  24. base64 = "0.13.0"