Cargo.toml 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. [workspace]
  2. resolver = "2"
  3. members = [
  4. "crates/bolt-cli",
  5. "crates/bolt-lang",
  6. "crates/bolt-helpers",
  7. "crates/programs/bolt-component",
  8. "crates/programs/bolt-system",
  9. "crates/programs/world",
  10. "crates/types",
  11. "examples/*",
  12. ]
  13. [workspace.package]
  14. version = "0.1.12"
  15. authors = ["Magicblock Labs <dev@magicblock.gg>"]
  16. repository = "https://github.com/magicblock-labs/bolt"
  17. homepage = "https://www.magicblock.gg/"
  18. license = "MIT"
  19. edition = "2021"
  20. [workspace.dependencies]
  21. bolt-attribute-bolt-program = { path = "crates/bolt-lang/attribute/bolt-program", version = "=0.1.12" }
  22. bolt-attribute-bolt-delegate = { path = "crates/bolt-lang/attribute/delegate", version = "=0.1.12" }
  23. bolt-attribute-bolt-component = { path = "crates/bolt-lang/attribute/component", version = "=0.1.12" }
  24. bolt-attribute-bolt-system = { path = "crates/bolt-lang/attribute/system", version = "=0.1.12"}
  25. bolt-attribute-bolt-system-input = { path = "crates/bolt-lang/attribute/system-input", version = "=0.1.12" }
  26. bolt-attribute-bolt-extra-accounts = { path = "crates/bolt-lang/attribute/extra-accounts", version = "=0.1.12" }
  27. bolt-attribute-bolt-arguments = { path = "crates/bolt-lang/attribute/arguments", version = "=0.1.12" }
  28. bolt-attribute-bolt-component-deserialize = { path = "crates/bolt-lang/attribute/component-deserialize", version = "=0.1.12" }
  29. bolt-attribute-bolt-component-id = { path = "crates/bolt-lang/attribute/component-id", version = "=0.1.12" }
  30. bolt-helpers-system-template = { path = "crates/bolt-helpers/attribute/system-template", version = "=0.1.12" }
  31. bolt-helpers-world-apply = { path = "crates/bolt-helpers/attribute/world-apply", version = "=0.1.12" }
  32. bolt-utils = { path = "crates/bolt-lang/utils", version = "=0.1.12" }
  33. world = { path = "crates/programs/world", features = ["cpi"], version = "=0.1.12"}
  34. bolt-system = { path = "crates/programs/bolt-system", features = ["cpi"], version = "=0.1.12"}
  35. bolt-component = { path = "crates/programs/bolt-component", features = ["cpi"], version = "=0.1.12"}
  36. ## External crates
  37. anchor-lang = { version = "=0.30.1", features = ["init-if-needed"] }
  38. anchor-cli = { version = "=0.30.1" }
  39. anchor-client = { version = "=0.30.1" }
  40. anchor-syn = { version = "=0.30.1" }
  41. anchor-spl = { version = "=0.30.1" }
  42. anchor-lang-idl = { version = "=0.1.1" }
  43. solana-program = { version = "=1.18" }
  44. solana-client = { version = "=1.16" }
  45. solana-security-txt = "1.1.1"
  46. tuple-conv = "1.0.1"
  47. syn = { version = "1.0.60", features = ["full"] }
  48. quote = "1.0"
  49. proc-macro2 = "1.0"
  50. serde = { version = "1.0", features = ["derive"] }
  51. serde_json = "1.0"
  52. anyhow = "1.0.32"
  53. heck = "0.5.0"
  54. clap = { version = "4.2.4", features = ["derive"] }
  55. ahash = "=0.8.11"
  56. ephemeral-rollups-sdk = "=0.0.6"
  57. [profile.release]
  58. overflow-checks = true
  59. lto = "fat"
  60. codegen-units = 1
  61. [profile.release.build-override]
  62. opt-level = 3
  63. incremental = false
  64. codegen-units = 1