Cargo.toml 555 B

12345678910111213141516171819202122232425
  1. [package]
  2. name = "zero-copy"
  3. version = "0.1.0"
  4. description = "Created with Anchor"
  5. edition = "2021"
  6. [lib]
  7. crate-type = ["cdylib", "lib"]
  8. name = "zero_copy"
  9. [features]
  10. no-entrypoint = []
  11. no-idl = []
  12. cpi = ["no-entrypoint"]
  13. default = []
  14. test-sbf = []
  15. idl-build = ["anchor-lang/idl-build"]
  16. [dependencies]
  17. anchor-lang = { path = "../../../../lang" }
  18. bytemuck = {version = "1.4.0", features = ["derive", "min_const_generics"]}
  19. [dev-dependencies]
  20. anchor-client = { path = "../../../../client", features = ["debug", "async"] }
  21. solana-program-test = "1.17.3"