Cargo.toml 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. [workspace]
  2. members = [
  3. "cli",
  4. "programs/*",
  5. "examples/*",
  6. "crates/*",
  7. ]
  8. [workspace.package]
  9. version = "0.1.10"
  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.10" }
  17. bolt-attribute-bolt-delegate = { path = "crates/bolt-lang/attribute/delegate", version = "=0.1.10" }
  18. bolt-attribute-bolt-component = { path = "crates/bolt-lang/attribute/component", version = "=0.1.10" }
  19. bolt-attribute-bolt-system = { path = "crates/bolt-lang/attribute/system", version = "=0.1.10"}
  20. bolt-attribute-bolt-system-input = { path = "crates/bolt-lang/attribute/system-input", version = "=0.1.10" }
  21. bolt-attribute-bolt-extra-accounts = { path = "crates/bolt-lang/attribute/extra-accounts", version = "=0.1.10" }
  22. bolt-attribute-bolt-arguments = { path = "crates/bolt-lang/attribute/arguments", version = "=0.1.10" }
  23. bolt-attribute-bolt-component-deserialize = { path = "crates/bolt-lang/attribute/component-deserialize", version = "=0.1.10" }
  24. bolt-attribute-bolt-component-id = { path = "crates/bolt-lang/attribute/component-id", version = "=0.1.10" }
  25. bolt-helpers-system-template = { path = "crates/bolt-helpers/attribute/system-template", version = "=0.1.10" }
  26. bolt-helpers-world-apply = { path = "crates/bolt-helpers/attribute/world-apply", version = "=0.1.10" }
  27. bolt-utils = { path = "crates/bolt-lang/utils", version = "=0.1.10" }
  28. world = { path = "programs/world", features = ["cpi"], version = "=0.1.10"}
  29. bolt-system = { path = "programs/bolt-system", features = ["cpi"], version = "=0.1.10"}
  30. bolt-component = { path = "programs/bolt-component", features = ["cpi"], version = "=0.1.10"}
  31. ## External crates
  32. anchor-lang = { version = "=0.30.1", features = ["init-if-needed"] }
  33. anchor-cli = { version = "=0.30.1" }
  34. anchor-client = { version = "=0.30.1" }
  35. anchor-syn = { version = "=0.30.1" }
  36. anchor-spl = { version = "=0.30.1" }
  37. anchor-lang-idl = { version = "=0.1.1" }
  38. solana-program = { version = "=1.18" }
  39. solana-client = { version = "=1.16" }
  40. solana-security-txt = "1.1.1"
  41. tuple-conv = "1.0.1"
  42. syn = { version = "1.0.60", features = ["full"] }
  43. quote = "1.0"
  44. proc-macro2 = "1.0"
  45. serde = { version = "1.0", features = ["derive"] }
  46. serde_json = "1.0"
  47. anyhow = "1.0.32"
  48. heck = "0.5.0"
  49. clap = { version = "4.2.4", features = ["derive"] }
  50. ahash = "=0.8.11"
  51. ephemeral-rollups-sdk = "=0.0.6"
  52. [profile.release]
  53. overflow-checks = true
  54. lto = "fat"
  55. codegen-units = 1
  56. [profile.release.build-override]
  57. opt-level = 3
  58. incremental = false
  59. codegen-units = 1