From eee3ae6153bece2341a3f614a01e35d476593c32 Mon Sep 17 00:00:00 2001 From: Anush008 <46051506+Anush008@users.noreply.github.com> Date: Fri, 25 Aug 2023 17:29:04 +0530 Subject: [PATCH] chore(deps): remove tokio, reqwest --- Cargo.toml | 18 +++++++++++++----- 1 file changed, 13 insertions(+), 5 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 3ea64f0..1343ded 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,8 +9,16 @@ repository = "https://github.com/dongri/openai-api-rs" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html -[dependencies] -reqwest = { version = "0.11", features = ["json"] } -tokio = { version = "1", features = ["full"] } -serde = { version = "1", features = ["derive"] } -serde_json = "1.0.97" +[dependencies.serde] +version = "1" +features = ["derive"] +default-features = false + +[dependencies.serde_json] +version = "1" +default-features = false + +[dependencies.minreq] +version = "2" +default-features = false +features = ["https-rustls", "json-using-serde"] \ No newline at end of file