docs(web): document introspection feature (#3937)

This commit is contained in:
Yuki Okushi 2026-02-18 17:14:25 +09:00 committed by GitHub
parent 11872101a3
commit 0ffaa78a32
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 7 additions and 0 deletions

View File

@ -45,6 +45,10 @@ To enable faster release iterations, we mark some features as experimental.
These features are prefixed with `experimental` and a breaking change may happen at any release.
Please use them in a production environment at your own risk.
- `experimental-introspection`: exposes route and method reporting helpers for local diagnostics
and tooling. See [`examples/introspection.rs`](examples/introspection.rs) and
[`examples/introspection_multi_servers.rs`](examples/introspection_multi_servers.rs).
## Documentation
- [Website & User Guide](https://actix.rs)

View File

@ -74,6 +74,9 @@
//! To enable faster release iterations, we mark some features as experimental.
//! These features are prefixed with `experimental` and a breaking change may happen at any release.
//! Please use them in a production environment at your own risk.
//!
//! - `experimental-introspection` - route and method reporting utilities for local diagnostics
//! and tooling. See `examples/introspection.rs` and `examples/introspection_multi_servers.rs`.
#![doc(html_logo_url = "https://actix.rs/img/logo.png")]
#![doc(html_favicon_url = "https://actix.rs/favicon.ico")]