Cargo.toml 357 B

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