Cargo.toml 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. [package]
  2. name = "bolt-lang"
  3. description = "Bolt Language"
  4. version = { workspace = true }
  5. authors = { workspace = true }
  6. repository = { workspace = true }
  7. homepage = { workspace = true }
  8. license = { workspace = true }
  9. edition = { workspace = true }
  10. [features]
  11. anchor-debug = ["anchor-lang/anchor-debug"]
  12. idl-build = ["anchor-lang/idl-build"]
  13. [dependencies]
  14. anchor-lang = { workspace = true }
  15. # Bolt Attributes
  16. bolt-attribute-bolt-program = { workspace = true }
  17. bolt-attribute-bolt-delegate = { workspace = true }
  18. bolt-attribute-bolt-component = { workspace = true }
  19. bolt-attribute-bolt-system = { workspace = true }
  20. bolt-attribute-bolt-system-input = { workspace = true }
  21. bolt-attribute-bolt-component-deserialize = { workspace = true }
  22. bolt-attribute-bolt-component-id = { workspace = true }
  23. bolt-attribute-bolt-extra-accounts = { workspace = true }
  24. bolt-attribute-bolt-arguments = { workspace = true }
  25. # Bolt Programs
  26. world = { workspace = true }
  27. bolt-system = { workspace = true }
  28. # Delegation
  29. ephemeral-rollups-sdk = { workspace = true , features = ["anchor"]}
  30. # Other dependencies
  31. serde = { workspace = true }
  32. serde_json = {workspace = true }
  33. ahash = { workspace = true }