19 lines
500 B
TOML
19 lines
500 B
TOML
[package]
|
|
name = "solana-cargo-test-bpf"
|
|
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"] }
|
|
|
|
[[bin]]
|
|
name = "cargo-test-bpf"
|
|
path = "src/main.rs"
|