Cargo.toml 951 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. [package]
  2. name = "anchor-cli"
  3. version = "0.13.1"
  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 = "3.0.0-beta.1"
  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"] }
  19. serde_json = "1.0"
  20. shellexpand = "2.1.0"
  21. toml = "0.5.8"
  22. serde = { version = "1.0.122", features = ["derive"] }
  23. solana-sdk = "=1.7.8"
  24. solana-program = "=1.7.8"
  25. solana-client = "=1.7.8"
  26. serum-common = { git = "https://github.com/project-serum/serum-dex", features = ["client"] }
  27. dirs = "3.0"
  28. heck = "0.3.1"
  29. flate2 = "1.0.19"
  30. rand = "0.7.3"
  31. tar = "0.4.35"
  32. reqwest = { version = "0.11.4", features = ["multipart", "blocking"] }
  33. tokio = "1.0"
  34. pathdiff = "0.2.0"
  35. cargo_toml = "0.9.2"
  36. walkdir = "2"