Cargo.toml 876 B

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