Registry / web-framework / rouille

rouille

JSON →
library3.6.2rscratesunverified

High-level idiomatic web framework

# Cargo.toml [dependencies] rouille = "3.6.2"
INSTALL
IMPORT
SIG · ROUILLE
R
rouille
web-frameworkrustv3.6.2
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

Server
✓ use rouille::Server;

Start a simple HTTP server with rouille

use rouille::{Server, Response}; fn main() { let server = Server::new("localhost:8080", |request| { Response::text("Hello, world!") }).unwrap(); server.run(); }
Debug
Known issues
gotchaSynchronous only; not suitable for high-concurrency workloads
fix
Consider using async frameworks like Actix Web or Axum for high concurrency
affects: >=3.0.0
Upgrade
Version history
3.6.2latest on crates.io
Audit
Dependencies

No dependency data recorded yet.

Agent activity
13 hits · last 30 days
node
12
Resources
rouille — cargo add rouille · libregistry