From ee212ec053917026e3326f4f536c15ec1713e615 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 30 Dec 2024 09:42:22 +0000 Subject: [PATCH 1/2] chore(deps): bump serde in the cargo-dependencies group Bumps the cargo-dependencies group with 1 update: [serde](https://github.com/serde-rs/serde). Updates `serde` from 1.0.216 to 1.0.217 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.216...v1.0.217) --- updated-dependencies: - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo-dependencies ... Signed-off-by: dependabot[bot] --- Cargo.lock | 8 ++++---- code/tutorials/json-editor/Cargo.toml | 2 +- code/tutorials/ratatui-counter-async-app/Cargo.toml | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 3390d6069..3ce9be01f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3013,18 +3013,18 @@ dependencies = [ [[package]] name = "serde" -version = "1.0.216" +version = "1.0.217" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0b9781016e935a97e8beecf0c933758c97a5520d32930e460142b4cd80c6338e" +checksum = "02fc4265df13d6fa1d00ecff087228cc0a2b5f3c0e87e258d8b94a156e984c70" dependencies = [ "serde_derive", ] [[package]] name = "serde_derive" -version = "1.0.216" +version = "1.0.217" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "46f859dbbf73865c6627ed570e78961cd3ac92407a2d117204c49232485da55e" +checksum = "5a9bf7cf98d04a2b28aead066b7496853d4779c9cc183c440dbac457641e19a0" dependencies = [ "proc-macro2", "quote", diff --git a/code/tutorials/json-editor/Cargo.toml b/code/tutorials/json-editor/Cargo.toml index 9d6d7c801..8a2e6f500 100644 --- a/code/tutorials/json-editor/Cargo.toml +++ b/code/tutorials/json-editor/Cargo.toml @@ -10,5 +10,5 @@ publish.workspace = true [dependencies] ratatui = "0.29.0" -serde = { version = "1.0.216", features = ["derive"] } +serde = { version = "1.0.217", features = ["derive"] } serde_json = "1.0.134" diff --git a/code/tutorials/ratatui-counter-async-app/Cargo.toml b/code/tutorials/ratatui-counter-async-app/Cargo.toml index fc0943c53..d830cf121 100644 --- a/code/tutorials/ratatui-counter-async-app/Cargo.toml +++ b/code/tutorials/ratatui-counter-async-app/Cargo.toml @@ -31,7 +31,7 @@ libc = "0.2.169" log = "0.4.22" pretty_assertions = "1.4.1" ratatui = { version = "0.29.0", features = ["serde", "macros"] } -serde = { version = "1.0.216", features = ["derive"] } +serde = { version = "1.0.217", features = ["derive"] } serde_json = "1.0.134" signal-hook = "0.3.17" strip-ansi-escapes = "0.2.0" From 2d66b81d6fe3bb0906c865d45ee50f9ea8413914 Mon Sep 17 00:00:00 2001 From: Josh McKinney Date: Tue, 31 Dec 2024 18:28:21 -0800 Subject: [PATCH 2/2] npm run format --- src/content/docs/tutorials/json-editor/main.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/content/docs/tutorials/json-editor/main.md b/src/content/docs/tutorials/json-editor/main.md index 18cd6d401..fe418664d 100644 --- a/src/content/docs/tutorials/json-editor/main.md +++ b/src/content/docs/tutorials/json-editor/main.md @@ -35,8 +35,8 @@ use std::io; You might notice that we are using `stderr` for our output. This is because we want to allow the user to pipe their completed json to other programs like `ratatui-tutorial > output.json`. To do -this, we are using the fact that `stderr` is piped differently than `stdout`. We render output -to `stderr`, and print our completed json to `stdout`. +this, we are using the fact that `stderr` is piped differently than `stdout`. We render output to +`stderr`, and print our completed json to `stdout`. For more information, please read the [crossterm documentation](https://docs.rs/crossterm/latest/crossterm/)