Cargo.toml 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. [workspace]
  2. members = [
  3. "cli",
  4. "programs/*",
  5. "examples/*",
  6. "crates/*",
  7. ]
  8. [workspace.package]
  9. version = "0.1.1"
  10. authors = ["Magicblock Labs <dev@magicblock.gg>"]
  11. repository = "https://github.com/magicblock-labs/bolt"
  12. homepage = "https://www.magicblock.gg/"
  13. license = "MIT"
  14. edition = "2021"
  15. [workspace.dependencies]
  16. bolt-attribute-bolt-program = { path = "crates/bolt-lang/attribute/bolt-program", version = "=0.1.1" }
  17. bolt-attribute-bolt-component = { path = "crates/bolt-lang/attribute/component", version = "=0.1.1" }
  18. bolt-attribute-bolt-system = { path = "crates/bolt-lang/attribute/system", version = "=0.1.1"}
  19. bolt-attribute-bolt-system-input = { path = "crates/bolt-lang/attribute/system-input", version = "=0.1.1" }
  20. bolt-attribute-bolt-extra-accounts = { path = "crates/bolt-lang/attribute/extra-accounts", version = "=0.1.1" }
  21. bolt-attribute-bolt-component-deserialize = { path = "crates/bolt-lang/attribute/component-deserialize", version = "=0.1.1" }
  22. bolt-attribute-bolt-component-id = { path = "crates/bolt-lang/attribute/component-id", version = "=0.1.1" }
  23. bolt-helpers-system-template = { path = "crates/bolt-helpers/attribute/system-template", version = "=0.1.1" }
  24. bolt-helpers-world-apply = { path = "crates/bolt-helpers/attribute/world-apply", version = "=0.1.1" }
  25. bolt-utils = { path = "crates/bolt-lang/utils", version = "=0.1.1" }
  26. world = { path = "programs/world", features = ["cpi"], version = "=0.1.1"}
  27. bolt-system = { path = "programs/bolt-system", features = ["cpi"], version = "=0.1.1"}
  28. bolt-component = { path = "programs/bolt-component", features = ["cpi"], version = "=0.1.1"}
  29. ## External crates
  30. anchor-lang = "0.29.0"
  31. anchor-spl = "0.29.0"
  32. solana-security-txt = "1.1.1"
  33. tuple-conv = "1.0.1"
  34. syn = { version = "1.0.60", features = ["full"] }
  35. quote = "1.0"
  36. proc-macro2 = "1.0"
  37. serde = { version = "1.0", features = ["derive"] }
  38. serde_json = "1.0"
  39. anyhow = "1.0.32"
  40. heck = "0.4.0"
  41. clap = { version = "4.2.4", features = ["derive"] }
  42. # TODO: Remove once https://github.com/solana-labs/solana/issues/33504 is resolved.
  43. ahash = "=0.8.6"
  44. [profile.release]
  45. overflow-checks = true
  46. lto = "fat"
  47. codegen-units = 1
  48. [profile.release.build-override]
  49. opt-level = 3
  50. incremental = false
  51. codegen-units = 1