Cargo.toml 908 B

123456789101112131415161718192021222324
  1. [package]
  2. name = "example"
  3. version = "0.1.0"
  4. authors = ["Armani Ferrante <armaniferrante@gmail.com>"]
  5. rust-version = "1.60"
  6. edition = "2021"
  7. [workspace]
  8. [features]
  9. async = ["anchor-client/async"]
  10. [dependencies]
  11. anchor-client = { path = "../", features = ["debug"] }
  12. basic-2 = { path = "../../examples/tutorial/basic-2/programs/basic-2", features = ["no-entrypoint"] }
  13. basic-4 = { path = "../../examples/tutorial/basic-4/programs/basic-4", features = ["no-entrypoint"] }
  14. composite = { path = "../../tests/composite/programs/composite", features = ["no-entrypoint"] }
  15. optional = { path = "../../tests/optional/programs/optional", features = ["no-entrypoint"] }
  16. events = { path = "../../tests/events/programs/events", features = ["no-entrypoint"] }
  17. anyhow = "1.0.32"
  18. clap = { version = "4.2.4", features = ["derive"] }
  19. shellexpand = "2.1.0"
  20. solana-sdk = "1.16"
  21. tokio = { version = "1", features = ["full"] }