Skip to content
/ http Public

Rust HTTP types

License

Apache-2.0, MIT licenses found

Licenses found

Apache-2.0
LICENSE-APACHE
MIT
LICENSE-MIT
Notifications You must be signed in to change notification settings

hyperium/http

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Mar 11, 2025
8c1fb20 · Mar 11, 2025
Jan 27, 2025
Feb 17, 2023
Apr 10, 2021
Mar 11, 2025
Jan 10, 2025
Mar 3, 2025
Mar 16, 2017
Mar 11, 2025
Mar 11, 2025
Mar 16, 2017
Mar 16, 2017
Nov 16, 2023

Repository files navigation

HTTP

A general purpose library of common HTTP types

CI Crates.io Documentation

More information about this crate can be found in the crate documentation.

Usage

To use http, first add this to your Cargo.toml:

[dependencies]
http = "1.0"

Next, add this to your crate:

use http::{Request, Response};

fn main() {
    // ...
}

Examples

Create an HTTP request:

use http::Request;

fn main() {
    let request = Request::builder()
      .uri("https://www.rust-lang.org/")
      .header("User-Agent", "awesome/1.0")
      .body(())
      .unwrap();
}

Create an HTTP response:

use http::{Response, StatusCode};

fn main() {
    let response = Response::builder()
      .status(StatusCode::MOVED_PERMANENTLY)
      .header("Location", "https://www.rust-lang.org/install.html")
      .body(())
      .unwrap();
}

Supported Rust Versions

This project follows the Tokio MSRV and is currently set to 1.49.

License

Licensed under either of

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.