April 1, 2026Rust SDK 2.1.0
Ship test data from Rust
You can now push test runs to TofuPilot from Rust. The SDK covers the full V2 API with async builders, typed errors, retries, and file upload helpers.
let client = TofuPilot::new("your-api-key");
client.runs().create()
.procedure_id("FVT-001")
.serial_number("SN-042")
.part_number("PART-001")
.outcome(Outcome::Pass)
.send()
.await?;