Cargo.toml 2.6 KB

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