14 releases
0.4.0 | Jan 15, 2023 |
---|---|
0.4.0-beta.3 | Dec 5, 2022 |
0.4.0-beta.2 | Nov 21, 2022 |
0.3.0 | Feb 25, 2022 |
0.2.3 | Dec 31, 2020 |
#37 in HTTP server
2,755 downloads per month
Used in 4 crates
73KB
1.5K
SLoC
Actix Governor
A middleware for actix-web that provides rate-limiting backed by governor.
Features:
- Simple to use
- High customizability
- High performance
- Robust yet flexible API
Example
use actix_governor::{Governor, GovernorConfigBuilder};
use actix_web::{web, App, HttpServer, Responder};
async fn index() -> impl Responder {
"Hello world!"
}
#[actix_web::main]
async fn main() -> std::io::Result<()> {
// Allow bursts with up to five requests per IP address
// and replenishes one element every two seconds
let governor_conf = GovernorConfigBuilder::default()
.per_second(2)
.burst_size(5)
.finish()
.unwrap();
HttpServer::new(move || {
App::new()
// Enable Governor middleware
.wrap(Governor::new(&governor_conf))
// Route hello world service
.route("/", web::get().to(index))
})
.bind("127.0.0.1:8080")?
.run()
.await
}
Add this to your Cargo.toml
:
[dependencies]
actix-governor = "0.4"
Dependencies
~16–25MB
~560K SLoC