Cargo.toml 533 B

1234567891011121314151617181920212223
  1. [package]
  2. name = "auction-house"
  3. version = "0.1.0"
  4. edition = "2018"
  5. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  6. [lib]
  7. crate-type = ["cdylib", "lib"]
  8. name = "auction_house"
  9. [features]
  10. no-entrypoint = []
  11. no-idl = []
  12. cpi = ["no-entrypoint"]
  13. default = []
  14. idl-build = ["anchor-lang/idl-build", "anchor-spl/idl-build"]
  15. [dependencies]
  16. anchor-lang = { path = "../../../../lang" }
  17. anchor-spl = { path = "../../../../spl", features = ["metadata"] }
  18. thiserror = "1.0"
  19. arrayref = "0.3.6"