Cargo.toml 951 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. thiserror = "1.0.20"
  14. solana-program = "1.4.3"
  15. solana-sdk = { version = "1.3.14", default-features = false, features = ["program"] }
  16. anchor-derive-accounts = { path = "./derive/accounts", version = "0.0.0-alpha.0" }
  17. anchor-attribute-program = { path = "./attribute/program", version = "0.0.0-alpha.0" }
  18. anchor-attribute-access-control = { path = "./attribute/access-control", version = "0.0.0-alpha.0" }
  19. anchor-attribute-account = { path = "./attribute/account", version = "0.0.0-alpha.0" }
  20. serum-borsh = { version = "0.7.2+serum.2", features = ["serum-program"] }
  21. [workspace]
  22. members = [
  23. "cli",
  24. "syn",
  25. "attribute/*",
  26. "derive/*",
  27. ]