Cargo.toml 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. [package]
  2. name = "anchor-cli"
  3. version = "0.31.1"
  4. authors = ["Anchor Maintainers <accounts@200ms.io>"]
  5. edition = "2021"
  6. repository = "https://github.com/coral-xyz/anchor"
  7. description = "Anchor CLI"
  8. license = "Apache-2.0"
  9. [[bin]]
  10. name = "anchor"
  11. path = "src/bin/main.rs"
  12. [features]
  13. dev = []
  14. [dependencies]
  15. anchor-client = { path = "../client", version = "0.31.1" }
  16. anchor-lang = { path = "../lang", version = "0.31.1" }
  17. anchor-lang-idl = { path = "../idl", version = "0.1.2", features = ["build", "convert"] }
  18. anyhow = "1.0.32"
  19. base64 = "0.21"
  20. bincode = "1.3.3"
  21. cargo_toml = "0.19.2"
  22. chrono = "0.4.19"
  23. clap = { version = "4.5.17", features = ["derive"] }
  24. clap_complete = "4.5.26"
  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-cli-config = "2"
  37. solana-faucet = "2"
  38. solana-rpc-client = "2"
  39. solana-sdk = "2"
  40. syn = { version = "1.0.60", features = ["full", "extra-traits"] }
  41. tar = "0.4.35"
  42. toml = "0.7.6"
  43. walkdir = "2.3.2"