| 12345678910111213141516171819202122 |
- [package]
- name = "solana-cargo-test-sbf"
- description = "Execute all unit and integration tests after building with the Solana SBF SDK"
- publish = false
- version = { workspace = true }
- authors = { workspace = true }
- repository = { workspace = true }
- homepage = { workspace = true }
- license = { workspace = true }
- edition = { workspace = true }
- [dependencies]
- cargo_metadata = { workspace = true }
- clap = { version = "3.1.5", features = ["cargo"] }
- itertools = { workspace = true }
- log = { workspace = true, features = ["std"] }
- regex = { workspace = true }
- solana-logger = { workspace = true }
- [[bin]]
- name = "cargo-test-sbf"
- path = "src/main.rs"
|