From b823c5a9a17217f37f7f6dc4117176b4eee3a71d Mon Sep 17 00:00:00 2001 From: Nick Lanham Date: Tue, 17 Dec 2024 13:01:08 -0800 Subject: [PATCH 1/4] see if trace says anything --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index acb403d45..407a77ff4 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -37,7 +37,7 @@ jobs: cargo install cargo-msrv --locked - name: verify-msrv run: | - cargo msrv --path kernel/ verify --all-features + cargo msrv --log-level trace --path kernel/ verify --all-features cargo msrv --path derive-macros/ verify --all-features cargo msrv --path ffi/ verify --all-features cargo msrv --path ffi-proc-macros/ verify --all-features From be01645f9d2eb65d344ab36634acc11016361460 Mon Sep 17 00:00:00 2001 From: Nick Lanham Date: Tue, 17 Dec 2024 13:02:42 -0800 Subject: [PATCH 2/4] force install --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 407a77ff4..800a7291a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -34,7 +34,7 @@ jobs: - name: Install cargo-msrv shell: bash run: | - cargo install cargo-msrv --locked + cargo install cargo-msrv --locked --force - name: verify-msrv run: | cargo msrv --log-level trace --path kernel/ verify --all-features From 668823672590b25ca03e47f0877b4b6fb6e9e6cf Mon Sep 17 00:00:00 2001 From: Nick Lanham Date: Tue, 17 Dec 2024 13:08:01 -0800 Subject: [PATCH 3/4] target --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 800a7291a..910bc1273 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -34,10 +34,10 @@ jobs: - name: Install cargo-msrv shell: bash run: | - cargo install cargo-msrv --locked --force + cargo install cargo-msrv --locked - name: verify-msrv run: | - cargo msrv --log-level trace --path kernel/ verify --all-features + cargo msrv --log-target stdout --log-level trace --path kernel/ verify --all-features cargo msrv --path derive-macros/ verify --all-features cargo msrv --path ffi/ verify --all-features cargo msrv --path ffi-proc-macros/ verify --all-features From 2a754864f006663bf93b15dcde10e67451f069b7 Mon Sep 17 00:00:00 2001 From: Nick Lanham Date: Tue, 17 Dec 2024 13:41:59 -0800 Subject: [PATCH 4/4] specify home dep --- .github/workflows/build.yml | 2 +- kernel/Cargo.toml | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 910bc1273..acb403d45 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -37,7 +37,7 @@ jobs: cargo install cargo-msrv --locked - name: verify-msrv run: | - cargo msrv --log-target stdout --log-level trace --path kernel/ verify --all-features + cargo msrv --path kernel/ verify --all-features cargo msrv --path derive-macros/ verify --all-features cargo msrv --path ffi/ verify --all-features cargo msrv --path ffi-proc-macros/ verify --all-features diff --git a/kernel/Cargo.toml b/kernel/Cargo.toml index a010e0ed7..b5cb30634 100644 --- a/kernel/Cargo.toml +++ b/kernel/Cargo.toml @@ -112,6 +112,9 @@ integration-test = [ "walkdir", ] +[dependencies.home] +version = "=0.5.9" + [build-dependencies] rustc_version = "0.4.1"