Cargo.toml 483 B

12345678910111213141516171819202122
  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", rev = "v0.29.0" }
  17. anyhow = "1.0.32"
  18. heck = "0.4.0"
  19. clap = { version = "4.2.4", features = ["derive"] }