Cargo.toml 684 B

123456789101112131415161718192021222324252627
  1. [package]
  2. name = "anchor"
  3. version = "0.1.0"
  4. description = ""
  5. repository = "https://github.com/project-serum/serum-dex"
  6. edition = "2018"
  7. [features]
  8. derive = []
  9. default = []
  10. [dependencies]
  11. thiserror = "1.0.20"
  12. solana-sdk = { version = "1.3.14", default-features = false, features = ["program"] }
  13. anchor-derive = { path = "./derive" }
  14. anchor-attributes-program = { path = "./attributes/program" }
  15. anchor-attributes-access-control = { path = "./attributes/access-control" }
  16. borsh = { git = "https://github.com/project-serum/borsh", branch = "serum", features = ["serum-program"] }
  17. [workspace]
  18. members = [
  19. "cli",
  20. "syn",
  21. "attributes/*",
  22. "derive",
  23. "examples/basic",
  24. ]