Cargo.toml 600 B

123456789101112131415161718192021222324
  1. [package]
  2. name = "bolt-cli"
  3. version = "0.0.1"
  4. authors = ["Magicblock Labs <dev@magicblock.gg>"]
  5. rust-version = "1.60"
  6. edition = "2021"
  7. repository = "https://github.com/magicblock-labs/bolt"
  8. description = "Bolt CLI"
  9. license = "MIT"
  10. [[bin]]
  11. name = "bolt"
  12. path = "src/bin/main.rs"
  13. [features]
  14. dev = []
  15. [dependencies]
  16. anchor-cli = { git = "https://github.com/coral-xyz/anchor.git" }
  17. anchor-client = { git = "https://github.com/coral-xyz/anchor.git" }
  18. anyhow = "1.0.32"
  19. heck = "0.4.0"
  20. clap = { version = "4.2.4", features = ["derive"] }
  21. syn = { version = "1.0.60", features = ["full", "extra-traits"] }