1234567891011121314151617181920212223242526 |
- [package]
- name = "bolt-lang"
- version = "0.0.1"
- edition = "2021"
- description = "Bolt Language"
- license = "MIT"
- [dependencies]
- anchor-lang = { version = "0.29.0"}
- # Bolt Attributes
- bolt-attribute-bolt-component = { path = "./attribute/component", version = "0.0.1" }
- bolt-attribute-bolt-account = { path = "./attribute/account", version = "0.0.1" }
- bolt-attribute-bolt-system = { path = "./attribute/system", version = "0.0.1" }
- bolt-attribute-bolt-component-deserialize = { path = "./attribute/component-deserialize", version = "0.0.1" }
- # Bolt Programs
- world = { path = "../../programs/world", features = ["cpi"], version = "0.0.1"}
- bolt-system = { path = "../../programs/bolt-system", features = ["cpi"], version = "0.0.1"}
- # Other dependencies
- serde = { version = "1.0", features = ["derive"] }
- serde_json = "1.0"
- # TODO: Remove once https://github.com/solana-labs/solana/issues/33504 is resolved.
- ahash = "=0.8.6"
|