Cargo.toml 450 B

123456789101112131415161718192021
  1. [package]
  2. name = "misc"
  3. version = "0.1.0"
  4. description = "Created with Anchor"
  5. edition = "2018"
  6. [lib]
  7. crate-type = ["cdylib", "lib"]
  8. name = "misc"
  9. [features]
  10. no-entrypoint = []
  11. no-idl = []
  12. cpi = ["no-entrypoint"]
  13. default = []
  14. [dependencies]
  15. anchor-lang = { path = "../../../../lang", features = ["init-if-needed"] }
  16. anchor-spl = { path = "../../../../spl" }
  17. misc2 = { path = "../misc2", features = ["cpi"] }
  18. spl-associated-token-account = "=1.0.3"