Cargo.toml 533 B

12345678910111213141516171819202122232425
  1. [package]
  2. name = "generics"
  3. version = "0.1.0"
  4. description = "Created with Anchor"
  5. edition = "2021"
  6. [lib]
  7. crate-type = ["cdylib", "lib"]
  8. name = "generics"
  9. [features]
  10. no-entrypoint = []
  11. no-idl = []
  12. no-log-ix-name = []
  13. cpi = ["no-entrypoint"]
  14. idl-build = [
  15. "anchor-lang/idl-build",
  16. "some-external-program/idl-build",
  17. ]
  18. default = []
  19. [dependencies]
  20. anchor-lang = { path = "../../../../lang" }
  21. anchor-spl = { path = "../../../../spl" }
  22. some-external-program = { path = "../some_external_program", features = ["no-entrypoint"] }