Cargo.toml 1.5 KB

123456789101112131415161718192021222324252627282930313233343536
  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 = ["bincode", "lazy_static", "spl-token", "bumpalo", "rand", "safe-transmute", "num-derive"]
  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. # Fuzz deps.
  27. bincode = { version = "1.3.1", optional = true }
  28. bumpalo = { version = "3.4.0", features = ["collections", "boxed"], optional = true }
  29. lazy_static = { version = "1.4.0", optional = true }
  30. rand = { version = "0.7.3", optional = true }
  31. safe-transmute = { version = "0.11.0", optional = true }
  32. spl-token = { version = "3.0.1", features = ["no-entrypoint"], optional = true }
  33. num-derive = { version = "0.3.3", optional = true }