Cargo.toml 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. [workspace]
  2. resolver = "2"
  3. members = [
  4. "crates/bolt-cli",
  5. "crates/bolt-lang",
  6. "crates/programs/bolt-component",
  7. "crates/programs/bolt-system",
  8. "crates/programs/world",
  9. "crates/types",
  10. "examples/*",
  11. ]
  12. [workspace.package]
  13. version = "0.2.2"
  14. authors = ["Magicblock Labs <dev@magicblock.gg>"]
  15. repository = "https://github.com/magicblock-labs/bolt"
  16. homepage = "https://www.magicblock.gg/"
  17. license = "MIT"
  18. edition = "2021"
  19. [workspace.dependencies]
  20. bolt-types = { path = "crates/types", version = "=0.2.2" }
  21. bolt-lang = { path = "crates/bolt-lang", version = "=0.2.2" }
  22. bolt-attribute-bolt-program = { path = "crates/bolt-lang/attribute/bolt-program", version = "=0.2.2" }
  23. bolt-attribute-bolt-delegate = { path = "crates/bolt-lang/attribute/delegate", version = "=0.2.2" }
  24. bolt-attribute-bolt-component = { path = "crates/bolt-lang/attribute/component", version = "=0.2.2" }
  25. bolt-attribute-bolt-system = { path = "crates/bolt-lang/attribute/system", version = "=0.2.2"}
  26. bolt-attribute-bolt-system-input = { path = "crates/bolt-lang/attribute/system-input", version = "=0.2.2" }
  27. bolt-attribute-bolt-extra-accounts = { path = "crates/bolt-lang/attribute/extra-accounts", version = "=0.2.2" }
  28. bolt-attribute-bolt-arguments = { path = "crates/bolt-lang/attribute/arguments", version = "=0.2.2" }
  29. bolt-attribute-bolt-component-deserialize = { path = "crates/bolt-lang/attribute/component-deserialize", version = "=0.2.2" }
  30. bolt-attribute-bolt-component-id = { path = "crates/bolt-lang/attribute/component-id", version = "=0.2.2" }
  31. bolt-utils = { path = "crates/bolt-lang/utils", version = "=0.2.2" }
  32. world = { path = "crates/programs/world", features = ["cpi"], version = "=0.2.2"}
  33. bolt-system = { path = "crates/programs/bolt-system", features = ["cpi"], version = "=0.2.2"}
  34. bolt-component = { path = "crates/programs/bolt-component", features = ["cpi"], version = "=0.2.2"}
  35. ## External crates
  36. session-keys = { version = "=2.0.6", features = ["no-entrypoint"] }
  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-lang-idl = { version = "=0.1.1" }
  42. solana-program = { version = "=1.18.26" }
  43. solana-client = { version = "=1.18.26" }
  44. mpl-token-metadata = { version = "=4.1.2" }
  45. solana-security-txt = "1.1.1"
  46. tuple-conv = "1.0.1"
  47. syn = { version = "1.0.60", features = ["full"] }
  48. ligen-ir = { version = "=0.1.18" }
  49. quote = "1.0"
  50. proc-macro2 = "1.0"
  51. serde = { version = "1.0", features = ["derive"] }
  52. serde_json = "1.0"
  53. anyhow = "1.0.32"
  54. heck = "0.5.0"
  55. clap = { version = "4.2.4", features = ["derive"] }
  56. ahash = "=0.8.11"
  57. ephemeral-rollups-sdk = "=0.2.1"
  58. bincode = "=1.3.3"
  59. [profile.release]
  60. overflow-checks = true
  61. lto = "fat"
  62. codegen-units = 1
  63. [profile.release.build-override]
  64. opt-level = 3
  65. incremental = false
  66. codegen-units = 1