Cargo.toml 453 B

123456789101112131415161718192021
  1. [package]
  2. name = "registry"
  3. version = "0.1.0"
  4. description = "Created with Anchor"
  5. rust-version = "1.62"
  6. edition = "2021"
  7. [lib]
  8. crate-type = ["cdylib", "lib"]
  9. name = "registry"
  10. [features]
  11. no-entrypoint = []
  12. cpi = ["no-entrypoint"]
  13. anchor-deprecated-state = []
  14. default = ["anchor-deprecated-state"]
  15. [dependencies]
  16. anchor-lang = { path = "../../../../lang" }
  17. anchor-spl = { path = "../../../../spl" }
  18. lockup = { path = "../lockup", features = ["cpi"] }