Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): bump serde from 1.0.216 to 1.0.217 in the cargo-dependencies group #807

Merged
merged 2 commits into from
Jan 1, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion code/tutorials/json-editor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
2 changes: 1 addition & 1 deletion code/tutorials/ratatui-counter-async-app/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions src/content/docs/tutorials/json-editor/main.md
Original file line number Diff line number Diff line change
Expand Up @@ -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/)
Expand Down
Loading