Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
2
Task/HTTP/Rust/http-1.rust
Normal file
2
Task/HTTP/Rust/http-1.rust
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
[dependencies]
|
||||
hyper = "0.6"
|
||||
14
Task/HTTP/Rust/http-2.rust
Normal file
14
Task/HTTP/Rust/http-2.rust
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
//cargo-deps: hyper="0.6"
|
||||
// The above line can be used with cargo-script which makes cargo's dependency handling more convenient for small programs
|
||||
extern crate hyper;
|
||||
|
||||
use std::io::Read;
|
||||
use hyper::client::Client;
|
||||
|
||||
fn main() {
|
||||
let client = Client::new();
|
||||
let mut resp = client.get("http://rosettacode.org").send().unwrap();
|
||||
let mut body = String::new();
|
||||
resp.read_to_string(&mut body).unwrap();
|
||||
println!("{}", body);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue