From 3bf14e0d473aab9c5e2d19a921692c4cc88d2b4e Mon Sep 17 00:00:00 2001 From: Guy Bedford Date: Sun, 14 Apr 2024 12:48:16 -0700 Subject: [PATCH] 0.2.19 --- Cargo.lock | 2 +- Cargo.toml | 2 +- node-chomp/package.json | 2 +- src/http_client.rs | 2 +- src/main.rs | 4 ++-- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 7fe6a54..85c3176 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -166,7 +166,7 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" [[package]] name = "chompbuild" -version = "0.2.18" +version = "0.2.19" dependencies = [ "anyhow", "async-recursion", diff --git a/Cargo.toml b/Cargo.toml index c83ee9d..6ef337a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "chompbuild" -version = "0.2.18" +version = "0.2.19" authors = ["Guy Bedford "] edition = "2021" license = "Apache-2.0" diff --git a/node-chomp/package.json b/node-chomp/package.json index d950104..25d26f2 100644 --- a/node-chomp/package.json +++ b/node-chomp/package.json @@ -1,6 +1,6 @@ { "name": "chomp", - "version": "0.2.18", + "version": "0.2.19", "description": "'JS Make' - parallel task runner CLI for the frontend ecosystem with a JS extension system", "bin": { "chomp": "index.js" diff --git a/src/http_client.rs b/src/http_client.rs index 38f2ec5..b1065b2 100644 --- a/src/http_client.rs +++ b/src/http_client.rs @@ -89,7 +89,7 @@ pub async fn fetch_uri_cached(uri_str: &str, uri: Uri) -> Result { println!("\x1b[34;1mFetch\x1b[0m {}", &uri_str); let https = HttpsConnector::new(); - let client = Client::builder().build::<_, hyper::Body>(https); + let client = Client::builder().build::, hyper::Body>(https); let res = client.get(uri).await?; if res.status() != 200 { diff --git a/src/main.rs b/src/main.rs index 43b1c2a..355b8f4 100644 --- a/src/main.rs +++ b/src/main.rs @@ -69,9 +69,9 @@ fn uri_parse(uri_str: &str) -> Option { #[tokio::main] async fn main() -> Result<()> { #[cfg(not(debug_assertions))] - let version = "0.2.18"; + let version = "0.2.19"; #[cfg(debug_assertions)] - let version = "0.2.18-debug"; + let version = "0.2.19-debug"; let matches = Command::new("Chomp") .version(version) .arg(