Cargo.toml 485 B

12345678910111213141516171819202122232425
  1. [package]
  2. name = "system-with-many-components"
  3. version.workspace = true
  4. edition.workspace = true
  5. [lib]
  6. crate-type = ["cdylib", "lib"]
  7. name = "system_with_many_components"
  8. [features]
  9. no-entrypoint = []
  10. no-idl = []
  11. no-log-ix-name = []
  12. cpi = ["no-entrypoint"]
  13. default = []
  14. idl-build = ["bolt-lang/idl-build"]
  15. anchor-debug = ["bolt-lang/anchor-debug"]
  16. custom-heap = []
  17. custom-panic = []
  18. [dependencies]
  19. bolt-lang.workspace = true
  20. component-small.workspace = true
  21. serde.workspace = true