Cargo.toml 819 B

1234567891011121314151617181920212223
  1. [package]
  2. name = "bolt-lang"
  3. version = "0.0.1"
  4. edition = "2021"
  5. description = "Bolt Language"
  6. license = "MIT"
  7. [dependencies]
  8. anchor-lang = { version = "0.29.0"}
  9. # Bolt Attributes
  10. bolt-attribute-bolt-component = { path = "./attribute/component", version = "0.0.1" }
  11. bolt-attribute-bolt-account = { path = "./attribute/account", version = "0.0.1" }
  12. bolt-attribute-bolt-system = { path = "./attribute/system", version = "0.0.1" }
  13. bolt-attribute-bolt-component-deserialize = { path = "./attribute/component-deserialize", version = "0.0.1" }
  14. # Bolt Programs
  15. world = { path = "../../programs/world", features = ["cpi"], version = "0.0.1"}
  16. bolt-system = { path = "../../programs/bolt-system", features = ["cpi"], version = "0.0.1"}
  17. # Other dependencies
  18. serde = { version = "1.0", features = ["derive"] }
  19. serde_json = "1.0"