Cargo.toml 847 B

1234567891011121314151617181920212223
  1. [package]
  2. name = "anchor-lang"
  3. version = "0.1.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. [dependencies]
  13. anchor-attribute-access-control = { path = "./attribute/access-control", version = "0.1.0" }
  14. anchor-attribute-account = { path = "./attribute/account", version = "0.1.0" }
  15. anchor-attribute-error = { path = "./attribute/error", version = "0.1.0" }
  16. anchor-attribute-program = { path = "./attribute/program", version = "0.1.0" }
  17. anchor-attribute-state = { path = "./attribute/state", version = "0.1.0" }
  18. anchor-derive-accounts = { path = "./derive/accounts", version = "0.1.0" }
  19. serum-borsh = "0.8.1-serum.1"
  20. solana-program = "=1.5.0"
  21. thiserror = "1.0.20"