Cargo.toml 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. [workspace]
  2. members = [
  3. "cli",
  4. "programs/*",
  5. "examples/*",
  6. "crates/*",
  7. ]
  8. [workspace.package]
  9. version = "0.0.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.0.1" }
  17. bolt-attribute-bolt-component = { path = "crates/bolt-lang/attribute/component", version = "=0.0.1" }
  18. bolt-attribute-bolt-system = { path = "crates/bolt-lang/attribute/system", version = "=0.0.1"}
  19. bolt-attribute-bolt-system-input = { path = "crates/bolt-lang/attribute/system-input", version = "=0.0.1" }
  20. bolt-attribute-bolt-component-deserialize = { path = "crates/bolt-lang/attribute/component-deserialize", version = "=0.0.1" }
  21. bolt-attribute-bolt-component-id = { path = "crates/bolt-lang/attribute/component-id", version = "=0.0.1" }
  22. world = { path = "programs/world", features = ["cpi"], version = "=0.0.1"}
  23. bolt-system = { path = "programs/bolt-system", features = ["cpi"], version = "=0.0.1"}
  24. ## External crates
  25. anchor-lang = "0.29.0"
  26. solana-security-txt = "1.1.1"
  27. tuple-conv = "1.0.1"
  28. syn = { version = "1.0.60", features = ["full"] }
  29. quote = "1.0"
  30. proc-macro2 = "1.0"
  31. serde = { version = "1.0", features = ["derive"] }
  32. serde_json = "1.0"
  33. anyhow = "1.0.32"
  34. heck = "0.4.0"
  35. clap = { version = "4.2.4", features = ["derive"] }
  36. # TODO: Remove once https://github.com/solana-labs/solana/issues/33504 is resolved.
  37. ahash = "=0.8.6"
  38. [profile.release]
  39. overflow-checks = true
  40. lto = "fat"
  41. codegen-units = 1
  42. [profile.release.build-override]
  43. opt-level = 3
  44. incremental = false
  45. codegen-units = 1