├── .gitignore ├── LICENSE ├── README.md ├── actix ├── .gitignore ├── Cargo.lock ├── Cargo.toml └── src │ └── main.rs ├── gotham ├── .gitignore ├── Cargo.lock ├── Cargo.toml └── src │ └── main.rs ├── hyper ├── .gitignore ├── Cargo.lock ├── Cargo.toml └── src │ └── main.rs ├── rocket ├── .gitignore ├── Cargo.lock ├── Cargo.toml └── src │ └── main.rs └── warp ├── Cargo.toml └── src └── main.rs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rousan/rust-web-frameworks-benchmark/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rousan/rust-web-frameworks-benchmark/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rousan/rust-web-frameworks-benchmark/HEAD/README.md -------------------------------------------------------------------------------- /actix/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | -------------------------------------------------------------------------------- /actix/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rousan/rust-web-frameworks-benchmark/HEAD/actix/Cargo.lock -------------------------------------------------------------------------------- /actix/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rousan/rust-web-frameworks-benchmark/HEAD/actix/Cargo.toml -------------------------------------------------------------------------------- /actix/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rousan/rust-web-frameworks-benchmark/HEAD/actix/src/main.rs -------------------------------------------------------------------------------- /gotham/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | -------------------------------------------------------------------------------- /gotham/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rousan/rust-web-frameworks-benchmark/HEAD/gotham/Cargo.lock -------------------------------------------------------------------------------- /gotham/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rousan/rust-web-frameworks-benchmark/HEAD/gotham/Cargo.toml -------------------------------------------------------------------------------- /gotham/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rousan/rust-web-frameworks-benchmark/HEAD/gotham/src/main.rs -------------------------------------------------------------------------------- /hyper/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | -------------------------------------------------------------------------------- /hyper/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rousan/rust-web-frameworks-benchmark/HEAD/hyper/Cargo.lock -------------------------------------------------------------------------------- /hyper/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rousan/rust-web-frameworks-benchmark/HEAD/hyper/Cargo.toml -------------------------------------------------------------------------------- /hyper/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rousan/rust-web-frameworks-benchmark/HEAD/hyper/src/main.rs -------------------------------------------------------------------------------- /rocket/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | -------------------------------------------------------------------------------- /rocket/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rousan/rust-web-frameworks-benchmark/HEAD/rocket/Cargo.lock -------------------------------------------------------------------------------- /rocket/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rousan/rust-web-frameworks-benchmark/HEAD/rocket/Cargo.toml -------------------------------------------------------------------------------- /rocket/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rousan/rust-web-frameworks-benchmark/HEAD/rocket/src/main.rs -------------------------------------------------------------------------------- /warp/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rousan/rust-web-frameworks-benchmark/HEAD/warp/Cargo.toml -------------------------------------------------------------------------------- /warp/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rousan/rust-web-frameworks-benchmark/HEAD/warp/src/main.rs --------------------------------------------------------------------------------