Cargo.toml 932 B

12345678910111213141516171819202122232425262728293031
  1. [package]
  2. name = "anchor-lang"
  3. version = "0.0.0-alpha.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.0.0-alpha.0" }
  14. anchor-attribute-account = { path = "./attribute/account", version = "0.0.0-alpha.0" }
  15. anchor-attribute-error = { path = "./attribute/error" }
  16. anchor-attribute-program = { path = "./attribute/program", version = "0.0.0-alpha.0" }
  17. anchor-derive-accounts = { path = "./derive/accounts", version = "0.0.0-alpha.0" }
  18. serum-borsh = { version = "0.8.0-serum.1", features = ["serum-program"] }
  19. solana-program = "1.4.3"
  20. thiserror = "1.0.20"
  21. [workspace]
  22. members = [
  23. "cli",
  24. "syn",
  25. "attribute/*",
  26. "derive/*",
  27. "spl",
  28. ]