Crates.io | tanu |
lib.rs | tanu |
version | |
source | src |
created_at | 2025-01-30 14:01:04.175247+00 |
updated_at | 2025-05-07 14:08:36.659121+00 |
description | tanu - High-performance and async-friendly WebAPI testing framework for Rust |
homepage | https://github.com/tanu-rs/tanu |
repository | https://github.com/tanu-rs/tanu |
max_upload_size | |
id | 1536417 |
Cargo.toml error: | TOML parse error at line 17, column 1 | 17 | autolib = false | ^^^^^^^ unknown field `autolib`, expected one of `name`, `version`, `edition`, `authors`, `description`, `readme`, `license`, `repository`, `homepage`, `documentation`, `build`, `resolver`, `links`, `default-run`, `default_dash_run`, `rust-version`, `rust_dash_version`, `rust_version`, `license-file`, `license_dash_file`, `license_file`, `licenseFile`, `license_capital_file`, `forced-target`, `forced_dash_target`, `autobins`, `autotests`, `autoexamples`, `autobenches`, `publish`, `metadata`, `keywords`, `categories`, `exclude`, `include` |
size | 0 |
High-performance, async-friendly and ergonomic WebAPI testing framework for Rust
As a long time backend engineer, I have always been passionate about building reliable and efficient systems. When working with WebAPIs, ensuring correctness, stability, and performance is crucial, yet I often found existing testing frameworks lacking in speed, flexibility, or Rust-native support. This led me to create a WebAPI testing framework in Rust.
While some WebAPI testing tools exist for Rust, they often lack ergonomics, are too low-level, or don't integrate well with modern Rust web frameworks. My goal was to create a framework that is:
I tried multiple solutions in the past but encountered significant limitations:
#[test]
, along with tokio, test-case, and reqwest crates. While functional, this approach lacked structure and ergonomics for writing effective tests at scale. I wanted a dedicated framework to simplify and streamline the process.