lightdom-test 0.1.3

A lightweight Rust library for testing HTML interactions without browser automation
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Framework-specific transport implementations
//!
//! This module provides HttpTransport implementations for popular web frameworks.

#[cfg(feature = "axum")]
pub mod axum;

#[cfg(feature = "axum")]
pub use self::axum::AxumTransport;

#[cfg(feature = "rocket")]
pub mod rocket;

#[cfg(feature = "rocket")]
pub use self::rocket::RocketTransport;