Cargo.toml 489 B

12345678910111213141516171819202122
  1. [package]
  2. name = "bolt-component"
  3. version = "0.0.1"
  4. edition = "2021"
  5. description = "Bolt component template"
  6. license = "MIT"
  7. [lib]
  8. crate-type = ["cdylib", "lib"]
  9. name = "bolt_component"
  10. [features]
  11. no-entrypoint = []
  12. no-idl = []
  13. no-log-ix-name = []
  14. cpi = ["no-entrypoint"]
  15. default = []
  16. idl-build = ["anchor-lang/idl-build"]
  17. [dependencies]
  18. anchor-lang = { version = "0.29.0", features = ["init-if-needed"] }
  19. bolt-system = { path = "../bolt-system", features = ["cpi"], version = "0.0.1" }