Cargo.toml 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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.5"
  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.5" }
  21. bolt-lang = { path = "crates/bolt-lang", version = "=0.2.5" }
  22. bolt-attribute-bolt-program = { path = "crates/bolt-lang/attribute/bolt-program", version = "=0.2.5" }
  23. bolt-attribute-bolt-delegate = { path = "crates/bolt-lang/attribute/delegate", version = "=0.2.5" }
  24. bolt-attribute-bolt-component = { path = "crates/bolt-lang/attribute/component", version = "=0.2.5" }
  25. bolt-attribute-bolt-system = { path = "crates/bolt-lang/attribute/system", version = "=0.2.5"}
  26. bolt-attribute-bolt-system-input = { path = "crates/bolt-lang/attribute/system-input", version = "=0.2.5" }
  27. bolt-attribute-bolt-extra-accounts = { path = "crates/bolt-lang/attribute/extra-accounts", version = "=0.2.5" }
  28. bolt-attribute-bolt-arguments = { path = "crates/bolt-lang/attribute/arguments", version = "=0.2.5" }
  29. bolt-attribute-bolt-component-deserialize = { path = "crates/bolt-lang/attribute/component-deserialize", version = "=0.2.5" }
  30. bolt-attribute-bolt-component-id = { path = "crates/bolt-lang/attribute/component-id", version = "=0.2.5" }
  31. bolt-utils = { path = "crates/bolt-lang/utils", version = "=0.2.5" }
  32. world = { path = "crates/programs/world", features = ["cpi"], version = "=0.2.5"}
  33. bolt-system = { path = "crates/programs/bolt-system", features = ["cpi"], version = "=0.2.5"}
  34. bolt-component = { path = "crates/programs/bolt-component", features = ["cpi"], version = "=0.2.5"}
  35. component-large = { path = "examples/component-large", features = ["cpi"], version = "=0.2.5"}
  36. component-small = { path = "examples/component-small", features = ["cpi"], version = "=0.2.5"}
  37. ## External crates
  38. session-keys = { version = "^2", features = ["no-entrypoint"] }
  39. anchor-lang = { version = "^0", features = ["init-if-needed"] }
  40. anchor-cli = { version = "^0" }
  41. anchor-client = { version = "^0", features = ["async"] }
  42. anchor-syn = { version = "^0" }
  43. anchor-lang-idl = { version = "^0" }
  44. solana-program = { version = "^2" }
  45. zeroize = "^1.7"
  46. mpl-token-metadata = { version = "^5" }
  47. solana-security-txt = "^1"
  48. tuple-conv = "1.0.1"
  49. syn = { version = "1.0.60", features = ["full"] }
  50. quote = "1.0"
  51. proc-macro2 = "^1"
  52. serde = { version = "^1", features = ["derive"] }
  53. serde_json = "^1"
  54. anyhow = "^1"
  55. heck = "0.5.0"
  56. clap = { version = "4.2.4", features = ["derive"] }
  57. ahash = "=0.8.11"
  58. ephemeral-rollups-sdk = "^0"
  59. bincode = "^1"
  60. which = "^7"
  61. tokio = { version = "^1", features = ["full"] }
  62. sysinfo = "^0"
  63. bytemuck_derive = "^1"
  64. [profile.release]
  65. overflow-checks = true
  66. lto = "fat"
  67. codegen-units = 1
  68. [profile.release.build-override]
  69. opt-level = 3
  70. incremental = false
  71. codegen-units = 1