Cargo.toml 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. [package]
  2. name = "anchor-cli"
  3. version = "0.28.0"
  4. authors = ["Anchor Maintainers <accounts@200ms.io>"]
  5. rust-version = "1.60"
  6. edition = "2021"
  7. repository = "https://github.com/coral-xyz/anchor"
  8. description = "Anchor CLI"
  9. license = "Apache-2.0"
  10. [[bin]]
  11. name = "anchor"
  12. path = "src/bin/main.rs"
  13. [features]
  14. dev = []
  15. [dependencies]
  16. anchor-client = { path = "../client", version = "0.28.0" }
  17. anchor-lang = { path = "../lang", version = "0.28.0" }
  18. anchor-syn = { path = "../lang/syn", features = ["event-cpi", "idl-parse", "init-if-needed"], version = "0.28.0" }
  19. anyhow = "1.0.32"
  20. base64 = "0.13.1"
  21. bincode = "1.3.3"
  22. cargo_toml = "0.15.3"
  23. chrono = "0.4.19"
  24. clap = { version = "4.2.4", features = ["derive"] }
  25. dirs = "4.0"
  26. flate2 = "1.0.19"
  27. heck = "0.4.0"
  28. pathdiff = "0.2.0"
  29. portpicker = "0.1.1"
  30. regex = "1.8.3"
  31. reqwest = { version = "0.11.4", default-features = false, features = ["multipart", "blocking", "rustls-tls"] }
  32. semver = "1.0.4"
  33. serde = { version = "1.0.122", features = ["derive"] }
  34. serde_json = "1.0"
  35. shellexpand = "2.1.0"
  36. solana-client = ">=1.16, <1.18"
  37. solana-cli-config = ">=1.16, <1.18"
  38. solana-faucet = ">=1.16, <1.18"
  39. solana-program = ">=1.16, <1.18"
  40. solana-sdk = ">=1.16, <1.18"
  41. solang-parser = "=0.3.2"
  42. syn = { version = "1.0.60", features = ["full", "extra-traits"] }
  43. tar = "0.4.35"
  44. toml = "0.7.6"
  45. walkdir = "2.3.2"