From 9f250ff6ae84e918cc25bce6626bd3b033336604 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 18 Oct 2024 21:21:46 +0000 Subject: [PATCH] Bump terminal_size from 0.3.0 to 0.4.0 Bumps [terminal_size](https://github.com/eminence/terminal-size) from 0.3.0 to 0.4.0. - [Release notes](https://github.com/eminence/terminal-size/releases) - [Commits](https://github.com/eminence/terminal-size/compare/v0.3.0...v0.4.0) --- updated-dependencies: - dependency-name: terminal_size dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 6 +++--- full-node/Cargo.toml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 57d99db7b4..b1ae00e19a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2561,12 +2561,12 @@ dependencies = [ [[package]] name = "terminal_size" -version = "0.3.0" +version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "21bebf2b7c9e0a515f6e0f8c51dc0f8e4696391e6f1ff30379559f8365fb0df7" +checksum = "4f599bd7ca042cfdf8f4512b277c02ba102247820f9d9d4a9f521f496751a6ef" dependencies = [ "rustix", - "windows-sys 0.48.0", + "windows-sys 0.59.0", ] [[package]] diff --git a/full-node/Cargo.toml b/full-node/Cargo.toml index 88e6e1641c..0634fbf75a 100644 --- a/full-node/Cargo.toml +++ b/full-node/Cargo.toml @@ -38,5 +38,5 @@ siphasher = { version = "1.0.1", default-features = false } soketto = { version = "0.8.0", features = ["deflate"] } smol = "2.0.0" smoldot = { version = "0.18.0", path = "../lib", default-features = false, features = ["database-sqlite", "std", "wasmtime"] } -terminal_size = "0.3.0" +terminal_size = "0.4.0" zeroize = { version = "1.7.0", default-features = false, features = ["alloc"] }