| Crates.io | p4cli-20251 |
| lib.rs | p4cli-20251 |
| version | 0.1.0 |
| created_at | 2025-08-26 11:52:43.267068+00 |
| updated_at | 2025-08-26 11:52:43.267068+00 |
| description | A simple Rust library to interact with Perforce command-line tools. |
| homepage | |
| repository | https://github.com/CatScarf/p4cli-20251 |
| max_upload_size | |
| id | 1811061 |
| size | 11,463 |
A simple Rust library to interact with Perforce command-line tools.
[dependencies]
p4cli-20251 = "0.1.0"
use p4cli_20251::P4Cli;
let p4 = P4Cli::new();
for line in p4.run(&["--help"]) {
println!("{}", line);
}