Cargo.toml 677 B

1234567891011121314151617181920212223242526272829
  1. [package]
  2. name = "bolt-cli"
  3. rust-version = "1.60"
  4. description = "Bolt CLI"
  5. version = { workspace = true }
  6. authors = { workspace = true }
  7. repository = { workspace = true }
  8. homepage = { workspace = true }
  9. license = { workspace = true }
  10. edition = { workspace = true }
  11. [[bin]]
  12. name = "bolt"
  13. path = "src/bin/main.rs"
  14. [profile.release]
  15. opt-level = 3
  16. lto = true
  17. [features]
  18. dev = []
  19. [dependencies]
  20. anchor-cli = { git = "https://github.com/coral-xyz/anchor.git" }
  21. anchor-client = { git = "https://github.com/coral-xyz/anchor.git" }
  22. anyhow = { workspace = true }
  23. heck = { workspace = true }
  24. clap = { workspace = true }
  25. syn = { workspace = true, features = ["full", "extra-traits"] }