Cargo.toml 748 B

1234567891011121314151617181920
  1. [package]
  2. name = "example"
  3. version = "0.1.0"
  4. authors = ["Armani Ferrante <armaniferrante@gmail.com>"]
  5. rust-version = "1.56"
  6. edition = "2021"
  7. [workspace]
  8. [dependencies]
  9. anchor-client = { path = "../", features = ["debug"] }
  10. basic-2 = { path = "../../examples/tutorial/basic-2/programs/basic-2", features = ["no-entrypoint"] }
  11. basic-4 = { path = "../../examples/tutorial/basic-4/programs/basic-4", features = ["no-entrypoint"] }
  12. composite = { path = "../../tests/composite/programs/composite", features = ["no-entrypoint"] }
  13. events = { path = "../../tests/events/programs/events", features = ["no-entrypoint"] }
  14. shellexpand = "2.1.0"
  15. anyhow = "1.0.32"
  16. rand = "0.7.3"
  17. clap = { version = "3.0.0-rc.0", features = ["derive"] }
  18. solana-sdk = "~1.10.29"