Cargo.toml 731 B

123456789101112131415161718192021222324252627
  1. [package]
  2. name = "anchor-cli"
  3. version = "0.1.0"
  4. authors = ["armaniferrante <armaniferrante@gmail.com>"]
  5. edition = "2018"
  6. [[bin]]
  7. name = "anchor"
  8. path = "src/main.rs"
  9. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  10. [dependencies]
  11. clap = "3.0.0-beta.1"
  12. anyhow = "1.0.32"
  13. syn = { version = "1.0.54", features = ["full", "extra-traits"] }
  14. anchor-syn = { path = "../syn", features = ["idl"] }
  15. serde_json = "1.0"
  16. shellexpand = "2.1.0"
  17. serde_yaml = "0.8"
  18. toml = "0.5.8"
  19. serde = { version = "1.0", features = ["derive"] }
  20. solana-sdk = "1.5.0"
  21. solana-client = "1.4.4"
  22. serum-common = { git = "https://github.com/project-serum/serum-dex", features = ["client"] }
  23. dirs = "3.0"
  24. heck = "0.3.1"