mirror of https://github.com/fafhrd91/actix-web
docs(web): add note about experimental feature (#3916)
This commit is contained in:
parent
84ddfe7b97
commit
d98b35db92
|
|
@ -37,7 +37,13 @@
|
|||
- SSL support using OpenSSL or Rustls
|
||||
- Middlewares ([Logger, Session, CORS, etc](https://actix.rs/docs/middleware/))
|
||||
- Integrates with the [`awc` HTTP client](https://docs.rs/awc/)
|
||||
- Runs on stable Rust 1.72+
|
||||
- Runs on stable Rust 1.88+
|
||||
|
||||
### Experimental features
|
||||
|
||||
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.
|
||||
|
||||
## Documentation
|
||||
|
||||
|
|
|
|||
|
|
@ -55,7 +55,7 @@
|
|||
//! - SSL support using OpenSSL or Rustls
|
||||
//! - Middlewares ([Logger, Session, CORS, etc](middleware))
|
||||
//! - Integrates with the [`awc` HTTP client](https://docs.rs/awc/)
|
||||
//! - Runs on stable Rust 1.54+
|
||||
//! - Runs on stable Rust 1.88+
|
||||
//!
|
||||
//! # Crate Features
|
||||
//! - `cookies` - cookies support (enabled by default)
|
||||
|
|
@ -69,6 +69,11 @@
|
|||
//! - `rustls-0_22` - HTTPS support via `rustls` 0.22 crate, supports `HTTP/2`
|
||||
//! - `rustls-0_23` - HTTPS support via `rustls` 0.23 crate, supports `HTTP/2`
|
||||
//! - `secure-cookies` - secure cookies support
|
||||
//!
|
||||
//! ## Experimental features
|
||||
//! 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.
|
||||
|
||||
#![doc(html_logo_url = "https://actix.rs/img/logo.png")]
|
||||
#![doc(html_favicon_url = "https://actix.rs/favicon.ico")]
|
||||
|
|
|
|||
Loading…
Reference in New Issue