Actix web

Asynchronous web framework for Actix.
- API Documentation (Development)
- API Documentation (Releases)
- Cargo package: actix-http
- Minimum supported Rust version: 1.20 or later
Actix web is licensed under the Apache-2.0 license.
Features
- HTTP 1.1 and 1.0 support
- Streaming and pipelining support
- Keep-alive and slow requests support
- WebSockets support
- Configurable request routing
- Multipart streams
- Middlewares
Usage
To use actix-web
, add this to your Cargo.toml
:
[]
= "0.1"
Example
extern crate actix;
extern crate actix_web;
extern crate futures;
use *;
use *;