Cargo.toml 767 B

12345678910111213141516171819202122232425262728
  1. [package]
  2. name = "anchor-lang"
  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-program = "1.4.3"
  13. solana-sdk = { version = "1.3.14", default-features = false, features = ["program"] }
  14. anchor-derive-accounts = { path = "./derive/accounts" }
  15. anchor-attribute-program = { path = "./attribute/program" }
  16. anchor-attribute-access-control = { path = "./attribute/access-control" }
  17. anchor-attribute-account = { path = "./attribute/account" }
  18. borsh = { git = "https://github.com/project-serum/borsh", branch = "serum", features = ["serum-program"] }
  19. [workspace]
  20. members = [
  21. "cli",
  22. "syn",
  23. "attribute/*",
  24. "derive/*",
  25. ]