Radish alpha
h
Radicle Heartwood Protocol & Stack
Radicle
Git (anonymous pull)
Log in to clone via SSH
term: Deny `print_stdout`
✓ CI success Lorenz Leutgeb committed 10 days ago
commit df8103f38982ca810c9b64735e2894ab938c3d14
parent 1eca840f30dd1557a48d8075f53fa5d8e66ca280
1 passed (1 total) View logs
1 file changed +5 -0
modified crates/radicle-term/src/lib.rs
@@ -1,3 +1,8 @@
+
// Prevent use of `println!` and `print!` which panic on broken pipes.
+
// Use `crate::io::println` or `term::io::print` instead.
+
// See: https://github.com/rust-lang/rust/issues/62569
+
#![deny(clippy::print_stdout)]
+

pub mod ansi;
pub mod cell;
pub mod colors;