Cargo.toml 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. [package]
  2. name = "anchor-cli"
  3. version = "0.22.0"
  4. authors = ["armaniferrante <armaniferrante@gmail.com>"]
  5. edition = "2018"
  6. [[bin]]
  7. name = "anchor"
  8. path = "src/bin/main.rs"
  9. [features]
  10. dev = []
  11. default = []
  12. [dependencies]
  13. clap = { version = "3.0.13", features = ["derive"] }
  14. anyhow = "1.0.32"
  15. syn = { version = "1.0.60", features = ["full", "extra-traits"] }
  16. anchor-lang = { path = "../lang" }
  17. anchor-client = { path = "../client" }
  18. anchor-syn = { path = "../lang/syn", features = ["idl", "init-if-needed"] }
  19. serde_json = "1.0"
  20. shellexpand = "2.1.0"
  21. toml = "0.5.8"
  22. semver = "1.0.4"
  23. serde = { version = "1.0.122", features = ["derive"] }
  24. solana-sdk = "1.8.5"
  25. solana-program = "1.8.5"
  26. solana-client = "1.8.5"
  27. serum-common = { git = "https://github.com/project-serum/serum-dex", features = ["client"] }
  28. dirs = "3.0"
  29. heck = "0.3.1"
  30. flate2 = "1.0.19"
  31. rand = "0.7.3"
  32. tar = "0.4.35"
  33. reqwest = { version = "0.11.4", features = ["multipart", "blocking"] }
  34. tokio = "1.0"
  35. pathdiff = "0.2.0"
  36. cargo_toml = "0.9.2"
  37. walkdir = "2"
  38. chrono = "0.4.19"