[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-program = { path = "./attribute/bolt-program", version = "0.0.1" } bolt-attribute-bolt-component = { path = "./attribute/component", version = "0.0.1" } bolt-attribute-bolt-system = { path = "./attribute/system", version = "0.0.1" } bolt-attribute-bolt-system-input = { path = "./attribute/system-input", version = "0.0.1" } bolt-attribute-bolt-component-deserialize = { path = "./attribute/component-deserialize", version = "0.0.1" } bolt-attribute-bolt-component-id = { path = "./attribute/component-id", 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"