
General-purpose HTTP types and builders — requests, responses, headers, status codes — line-by-line transliteration of upstream crate with provenance headers and idiom mapping for parity.
This is a Kotlin Multiplatform line-by-line transliteration port of hyperium/http.
Original Project: This port is based on hyperium/http. All design credit and project intent belong to the upstream authors; this repository is a faithful port to Kotlin Multiplatform with no behavioural changes intended.
The upstream README and license text are treated as upstream-authored source documents. This repository adds Kotlin-port wrapper sections, absolute-link edits, and port-specific notices while keeping upstream authorship attached to the original text.
This is an in-progress port. The goal is feature parity with the upstream Rust crate while providing a native Kotlin Multiplatform API. Every Kotlin file carries a // port-lint: source <path> header naming its upstream Rust counterpart so the AST-distance tool can track provenance.
The text below is reproduced and lightly edited from
https://github.com/hyperium/http. It is the upstream project's own description and remains under the upstream authors' authorship; links have been rewritten to absolute upstream URLs so they continue to resolve from this repository.
A general purpose library of common HTTP types
More information about this crate can be found in the crate documentation.
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() {
// ...
}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();
}This project follows the hyper's MSRV policy, though it can be lower, and is currently set to 1.57.
Licensed under either of
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.
dependencies {
implementation("io.github.kotlinmania:http-kotlin:0.1.3")
}Sydney Renee sydney@solace.ofharmony.ai (GitHub: @sydneyrenee) maintains this Kotlin port. Sydney Renee is the founder of The Solace Project.
./gradlew build
./gradlew testSee AGENTS.md and CLAUDE.md for translator discipline, port-lint header convention, and Rust → Kotlin idiom mapping.
This Kotlin port is distributed under the same dual Apache-2.0 OR MIT license as the upstream hyperium/http. See LICENSE-APACHE, LICENSE-MIT, and NOTICE for the full text and Kotlin port notice.
Original work copyrighted by the http authors.
Kotlin port: Copyright (c) 2026 Sydney Renee and The Solace Project.
Byline: Sydney Renee sydney@solace.ofharmony.ai, founder of The Solace Project.
Thanks to the hyperium/http maintainers and contributors for the original Rust implementation. This port reproduces their work in Kotlin Multiplatform; bug reports about upstream design or behavior should go to the upstream repository.
This is a Kotlin Multiplatform line-by-line transliteration port of hyperium/http.
Original Project: This port is based on hyperium/http. All design credit and project intent belong to the upstream authors; this repository is a faithful port to Kotlin Multiplatform with no behavioural changes intended.
The upstream README and license text are treated as upstream-authored source documents. This repository adds Kotlin-port wrapper sections, absolute-link edits, and port-specific notices while keeping upstream authorship attached to the original text.
This is an in-progress port. The goal is feature parity with the upstream Rust crate while providing a native Kotlin Multiplatform API. Every Kotlin file carries a // port-lint: source <path> header naming its upstream Rust counterpart so the AST-distance tool can track provenance.
The text below is reproduced and lightly edited from
https://github.com/hyperium/http. It is the upstream project's own description and remains under the upstream authors' authorship; links have been rewritten to absolute upstream URLs so they continue to resolve from this repository.
A general purpose library of common HTTP types
More information about this crate can be found in the crate documentation.
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() {
// ...
}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();
}This project follows the hyper's MSRV policy, though it can be lower, and is currently set to 1.57.
Licensed under either of
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.
dependencies {
implementation("io.github.kotlinmania:http-kotlin:0.1.3")
}Sydney Renee sydney@solace.ofharmony.ai (GitHub: @sydneyrenee) maintains this Kotlin port. Sydney Renee is the founder of The Solace Project.
./gradlew build
./gradlew testSee AGENTS.md and CLAUDE.md for translator discipline, port-lint header convention, and Rust → Kotlin idiom mapping.
This Kotlin port is distributed under the same dual Apache-2.0 OR MIT license as the upstream hyperium/http. See LICENSE-APACHE, LICENSE-MIT, and NOTICE for the full text and Kotlin port notice.
Original work copyrighted by the http authors.
Kotlin port: Copyright (c) 2026 Sydney Renee and The Solace Project.
Byline: Sydney Renee sydney@solace.ofharmony.ai, founder of The Solace Project.
Thanks to the hyperium/http maintainers and contributors for the original Rust implementation. This port reproduces their work in Kotlin Multiplatform; bug reports about upstream design or behavior should go to the upstream repository.