diff options
Diffstat (limited to 'crates/stdx')
-rw-r--r-- | crates/stdx/src/panic_context.rs | 2 | ||||
-rw-r--r-- | crates/stdx/src/process.rs | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/crates/stdx/src/panic_context.rs b/crates/stdx/src/panic_context.rs index 8d51e20d3..26debf3c4 100644 --- a/crates/stdx/src/panic_context.rs +++ b/crates/stdx/src/panic_context.rs | |||
@@ -1,6 +1,6 @@ | |||
1 | //! A micro-crate to enhance panic messages with context info. | 1 | //! A micro-crate to enhance panic messages with context info. |
2 | //! | 2 | //! |
3 | //! FIXME: upstream to https://github.com/kriomant/panic-context ? | 3 | //! FIXME: upstream to <https://github.com/kriomant/panic-context> ? |
4 | 4 | ||
5 | use std::{cell::RefCell, panic, sync::Once}; | 5 | use std::{cell::RefCell, panic, sync::Once}; |
6 | 6 | ||
diff --git a/crates/stdx/src/process.rs b/crates/stdx/src/process.rs index b0fa12f76..692a2ab3d 100644 --- a/crates/stdx/src/process.rs +++ b/crates/stdx/src/process.rs | |||
@@ -1,7 +1,7 @@ | |||
1 | //! Read both stdout and stderr of child without deadlocks. | 1 | //! Read both stdout and stderr of child without deadlocks. |
2 | //! | 2 | //! |
3 | //! https://github.com/rust-lang/cargo/blob/905af549966f23a9288e9993a85d1249a5436556/crates/cargo-util/src/read2.rs | 3 | //! <https://github.com/rust-lang/cargo/blob/905af549966f23a9288e9993a85d1249a5436556/crates/cargo-util/src/read2.rs> |
4 | //! https://github.com/rust-lang/cargo/blob/58a961314437258065e23cb6316dfc121d96fb71/crates/cargo-util/src/process_builder.rs#L231 | 4 | //! <https://github.com/rust-lang/cargo/blob/58a961314437258065e23cb6316dfc121d96fb71/crates/cargo-util/src/process_builder.rs#L231> |
5 | 5 | ||
6 | use std::{ | 6 | use std::{ |
7 | io, | 7 | io, |