From 4116d2bb988a5085e33a4aab132b547b4006cc4f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 17 Jan 2024 17:23:20 +0000 Subject: [PATCH 1/2] Bump actions/cache from 3 to 4 Bumps [actions/cache](https://github.com/actions/cache) from 3 to 4. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/benchmark.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/benchmark.yml b/.github/workflows/benchmark.yml index 48da0cf..d2e9483 100644 --- a/.github/workflows/benchmark.yml +++ b/.github/workflows/benchmark.yml @@ -27,7 +27,7 @@ jobs: profile: minimal - name: Cache cargo - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: | target From 3df29fa986d70db80c0bfda3f57c6d78bf8d94a2 Mon Sep 17 00:00:00 2001 From: jedel1043 Date: Wed, 24 Jan 2024 19:06:38 -0600 Subject: [PATCH 2/2] Fix warning --- src/pretty/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pretty/mod.rs b/src/pretty/mod.rs index bd18e95..6a53620 100644 --- a/src/pretty/mod.rs +++ b/src/pretty/mod.rs @@ -11,7 +11,7 @@ use core::ptr; use no_panic::no_panic; pub mod to_fixed; -pub use to_fixed::{format64_to_fixed, Cursor}; +pub use to_fixed::format64_to_fixed; /// Print f64 to the given buffer and return number of bytes written. ///