workspace.toml.template 703 B

12345678910111213141516171819202122232425262728
  1. [workspace]
  2. members = [
  3. "programs/*",
  4. "programs-ecs/components/*",
  5. "programs-ecs/systems/*"
  6. ]
  7. resolver = "2"
  8. [workspace.dependencies]
  9. bolt-lang = "{VERSION}"
  10. anchor-lang = "{ANCHOR_VERSION}"
  11. [profile.release]
  12. overflow-checks = true
  13. lto = "fat"
  14. codegen-units = 1
  15. [profile.release.build-override]
  16. opt-level = 3
  17. incremental = false
  18. codegen-units = 1
  19. [patch.crates-io]
  20. # Uncomment this to use the latest in-development version of Bolt
  21. # bolt-lang = {{ git = "https://github.com/magicblock-labs/bolt.git", branch = "main" }}
  22. # Uncomment this to use a local version of Bolt for development (bolt must be cloned above the current directory)
  23. # bolt-lang = {{ path = "../bolt/crates/bolt-lang"}}