Cargo.toml 735 B

123456789101112131415161718192021222324252627
  1. [package]
  2. name = "world"
  3. version = "0.0.1"
  4. edition = "2021"
  5. description = "Bolt World program"
  6. license = "MIT"
  7. [lib]
  8. crate-type = ["cdylib", "lib"]
  9. name = "world"
  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-component = { path = "../../programs/bolt-component", features = ["cpi"], version = "0.0.1"}
  20. bolt-helpers-world-apply = { path = "../../crates/bolt-helpers/attribute/world-apply", version = "0.0.1" }
  21. bolt-system = { path = "../../programs/bolt-system", features = ["cpi"], version = "0.0.1"}
  22. solana-security-txt = "1.1.1"
  23. tuple-conv = "1.0.1"