Cargo.toml 646 B

12345678910111213141516171819202122
  1. [package]
  2. name = "solana-cargo-test-sbf"
  3. description = "Execute all unit and integration tests after building with the Solana SBF SDK"
  4. publish = false
  5. version = { workspace = true }
  6. authors = { workspace = true }
  7. repository = { workspace = true }
  8. homepage = { workspace = true }
  9. license = { workspace = true }
  10. edition = { workspace = true }
  11. [dependencies]
  12. cargo_metadata = { workspace = true }
  13. clap = { version = "3.1.5", features = ["cargo"] }
  14. itertools = { workspace = true }
  15. log = { workspace = true, features = ["std"] }
  16. regex = { workspace = true }
  17. solana-logger = { workspace = true }
  18. [[bin]]
  19. name = "cargo-test-sbf"
  20. path = "src/main.rs"