使用旧的Rust 2015

0.10.14 2018年5月22日

#137 in #modern

MIT 许可证

580KB
12K SLoC

hyper-sync

Travis Build Status Coverage Status MIT licensed Released API docs

为Rust编写的现代HTTP库。原始hyper库(v0.10.x)的分支。

文档

概述

Hyper是一个用Rust编写并针对Rust编写的快速、现代HTTP实现。它是在原始HTTP之上的低级类型安全抽象,提供了一个优雅的层,覆盖了“字符串类型”的HTTP。

Hyper提供了一个HTTP客户端和服务器,可用于驱动完全用Rust编写的复杂Web应用程序。

文档位于 http://docs.rs/hyper-sync

示例

Hello World服务器

extern crate hyper_sync;

use hyper_sync::Server;
use hyper_sync::server::{Request, Response};

fn hello(_: Request, res: Response) {
    res.send(b"Hello World!").unwrap();
}

fn main() {
    Server::http("127.0.0.1:3000").unwrap()
        .handle(hello).unwrap();
}

客户端

extern crate hyper_sync;

use std::io::Read;

use hyper_sync::Client;
use hyper_sync::header::Connection;

fn main() {
    // Create a client.
    let client = Client::new();

    // Creating an outgoing request.
    let mut res = client.get("https://www.rust-lang.net.cn/")
        // set a header
        .header(Connection::close())
        // let 'er go!
        .send().unwrap();

    // Read the Response.
    let mut body = String::new();
    res.read_to_string(&mut body).unwrap();

    println!("Response: {}", body);
}

依赖项

~4MB
~94K SLoC