Cargo.toml 315 B

123456789101112131415161718
  1. [package]
  2. name = "external"
  3. version = "0.1.0"
  4. description = "Created with Anchor"
  5. edition = "2021"
  6. [lib]
  7. crate-type = ["cdylib", "lib"]
  8. [features]
  9. no-entrypoint = []
  10. no-idl = []
  11. cpi = ["no-entrypoint"]
  12. default = []
  13. idl-build = ["anchor-lang/idl-build"]
  14. [dependencies]
  15. anchor-lang = { path = "../../../../lang" }