From 7ca17839eaf3030afbe6585e17343710a289c021 Mon Sep 17 00:00:00 2001 From: Mara Schulke Date: Tue, 23 Jan 2024 19:09:15 +0100 Subject: [PATCH 1/3] Update h2 again --- Cargo.lock | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 4f51a856..1647cdb9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -464,7 +464,7 @@ dependencies = [ "aws-smithy-types", "bytes", "fastrand", - "h2 0.3.21", + "h2 0.3.24", "http 0.2.9", "http-body 0.4.5", "hyper 0.14.27", @@ -1334,9 +1334,9 @@ dependencies = [ [[package]] name = "h2" -version = "0.3.21" +version = "0.3.24" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "91fc23aa11be92976ef4729127f1a74adf36d8436f7816b185d18df956790833" +checksum = "bb2c4422095b67ee78da96fbb51a4cc413b3b25883c7717ff7ca1ab31022c9c9" dependencies = [ "bytes", "fnv", @@ -1344,7 +1344,7 @@ dependencies = [ "futures-sink", "futures-util", "http 0.2.9", - "indexmap 1.9.3", + "indexmap 2.0.2", "slab", "tokio", "tokio-util", @@ -1512,7 +1512,7 @@ dependencies = [ "futures-channel", "futures-core", "futures-util", - "h2 0.3.21", + "h2 0.3.24", "http 0.2.9", "http-body 0.4.5", "httparse", @@ -2463,7 +2463,7 @@ dependencies = [ "encoding_rs", "futures-core", "futures-util", - "h2 0.3.21", + "h2 0.3.24", "http 0.2.9", "http-body 0.4.5", "hyper 0.14.27", @@ -3283,7 +3283,7 @@ dependencies = [ "axum 0.6.20", "base64", "bytes", - "h2 0.3.21", + "h2 0.3.24", "http 0.2.9", "http-body 0.4.5", "hyper 0.14.27", From cb2d86833aadf7de5f362d65b08b844f2e0befb2 Mon Sep 17 00:00:00 2001 From: Mara Schulke Date: Tue, 27 Feb 2024 14:37:18 +0100 Subject: [PATCH 2/3] Log the installation of local pkgs --- src/command.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/command.rs b/src/command.rs index 3d4732a9..c3fcb5f3 100644 --- a/src/command.rs +++ b/src/command.rs @@ -294,6 +294,8 @@ pub async fn install() -> miette::Result<()> { if let Some(ref pkg) = manifest.package { store.populate(pkg).await?; + + tracing::info!(":: installed {}@{}", pkg.name, pkg.version); } let dependency_graph = From 2055fb247cc913ce77c6afa244ee376263a132e5 Mon Sep 17 00:00:00 2001 From: Mara Schulke Date: Tue, 27 Feb 2024 14:41:23 +0100 Subject: [PATCH 3/3] Repair testsRepair tests --- tests/cmd/install/stdout.log | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/cmd/install/stdout.log b/tests/cmd/install/stdout.log index e69de29b..96876105 100644 --- a/tests/cmd/install/stdout.log +++ b/tests/cmd/install/stdout.log @@ -0,0 +1 @@ +:: installed some-test-api@0.1.0