Cargo.toml 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  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.1"
  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-attribute-bolt-program = { path = "crates/bolt-lang/attribute/bolt-program", version = "=0.2.1" }
  21. bolt-attribute-bolt-delegate = { path = "crates/bolt-lang/attribute/delegate", version = "=0.2.1" }
  22. bolt-attribute-bolt-component = { path = "crates/bolt-lang/attribute/component", version = "=0.2.1" }
  23. bolt-attribute-bolt-system = { path = "crates/bolt-lang/attribute/system", version = "=0.2.1"}
  24. bolt-attribute-bolt-system-input = { path = "crates/bolt-lang/attribute/system-input", version = "=0.2.1" }
  25. bolt-attribute-bolt-extra-accounts = { path = "crates/bolt-lang/attribute/extra-accounts", version = "=0.2.1" }
  26. bolt-attribute-bolt-arguments = { path = "crates/bolt-lang/attribute/arguments", version = "=0.2.1" }
  27. bolt-attribute-bolt-component-deserialize = { path = "crates/bolt-lang/attribute/component-deserialize", version = "=0.2.1" }
  28. bolt-attribute-bolt-component-id = { path = "crates/bolt-lang/attribute/component-id", version = "=0.2.1" }
  29. bolt-utils = { path = "crates/bolt-lang/utils", version = "=0.2.1" }
  30. world = { path = "crates/programs/world", features = ["cpi"], version = "=0.2.1"}
  31. bolt-system = { path = "crates/programs/bolt-system", features = ["cpi"], version = "=0.2.1"}
  32. bolt-component = { path = "crates/programs/bolt-component", features = ["cpi"], version = "=0.2.1"}
  33. ## External crates
  34. session-keys = { version = "=2.0.6", features = ["no-entrypoint"] }
  35. anchor-lang = { version = "=0.30.1", features = ["init-if-needed"] }
  36. anchor-cli = { version = "=0.30.1" }
  37. anchor-client = { version = "=0.30.1" }
  38. anchor-syn = { version = "=0.30.1" }
  39. anchor-spl = { version = "=0.30.1" }
  40. anchor-lang-idl = { version = "=0.1.1" }
  41. solana-program = { version = "=1.18" }
  42. solana-client = { version = "=1.16" }
  43. solana-security-txt = "1.1.1"
  44. tuple-conv = "1.0.1"
  45. syn = { version = "1.0.60", features = ["full"] }
  46. ligen-ir = { version = "=0.1.18" }
  47. quote = "1.0"
  48. proc-macro2 = "1.0"
  49. serde = { version = "1.0", features = ["derive"] }
  50. serde_json = "1.0"
  51. anyhow = "1.0.32"
  52. heck = "0.5.0"
  53. clap = { version = "4.2.4", features = ["derive"] }
  54. ahash = "=0.8.11"
  55. ephemeral-rollups-sdk = "=0.2.1"
  56. [profile.release]
  57. overflow-checks = true
  58. lto = "fat"
  59. codegen-units = 1
  60. [profile.release.build-override]
  61. opt-level = 3
  62. incremental = false
  63. codegen-units = 1