Cargo.toml 461 B

12345678910111213141516171819
  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" }
  15. serde_json = "1.0"
  16. shellexpand = "2.1.0"