■ get 함수를 사용해 웹 페이지를 다운로드하는 방법을 보여준다.
▶ Cargo.toml
1 2 3 4 5 6 7 8 9 10 |
[package] name = "test_project" version = "0.1.0" edition = "2021" [dependencies] tokio = { version = "1", features = ["full"] } reqwest = "0.11.4" |
▶ src/main.rs
1 2 3 4 5 6 7 8 9 10 11 |
#[tokio::main] async fn main() { let html : String = reqwest::get("https://icodebroker.tistory.com") .await.unwrap() .text().await.unwrap(); println!("{}", html); } |