1
0
mirror of https://github.com/fafhrd91/actix-web synced 2024-11-23 16:21:06 +01:00

chore(awc): fix the issue where the code in the awc example cannot run (#3421)

This commit is contained in:
Piperck(Zhinan) 2024-07-01 17:39:54 +08:00 committed by GitHub
parent 71cd3a31f9
commit e189e4a3bf
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,6 +1,8 @@
use std::error::Error as StdError; use std::error::Error as StdError;
#[tokio::main] /// If we want to make requests to addresses starting with `https`, we need to enable the rustls feature of awc
/// `awc = { version = "3.5.0", features = ["rustls"] }`
#[actix_rt::main]
async fn main() -> Result<(), Box<dyn StdError>> { async fn main() -> Result<(), Box<dyn StdError>> {
env_logger::init_from_env(env_logger::Env::new().default_filter_or("info")); env_logger::init_from_env(env_logger::Env::new().default_filter_or("info"));