Cargo.toml 1.1 KB

123456789101112131415161718192021222324252627282930
  1. [package]
  2. name = "anchor-lang"
  3. version = "0.3.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. fuzzing = ["anchor-fuzzing"]
  12. default = []
  13. [dependencies]
  14. anchor-attribute-access-control = { path = "./attribute/access-control", version = "0.3.0" }
  15. anchor-attribute-account = { path = "./attribute/account", version = "0.3.0" }
  16. anchor-attribute-error = { path = "./attribute/error", version = "0.3.0" }
  17. anchor-attribute-program = { path = "./attribute/program", version = "0.3.0" }
  18. anchor-attribute-state = { path = "./attribute/state", version = "0.3.0" }
  19. anchor-attribute-interface = { path = "./attribute/interface", version = "0.3.0" }
  20. anchor-derive-accounts = { path = "./derive/accounts", version = "0.3.0" }
  21. anchor-attribute-event = { path = "./attribute/event", version = "0.3.0" }
  22. borsh = "0.8.2"
  23. solana-program = "=1.5.15"
  24. thiserror = "1.0.20"
  25. base64 = "0.13.0"
  26. # Fuzzing.
  27. anchor-fuzzing = { path = "./fuzzing", version = "0.3.0", optional = true }