diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-30 18:31:44 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-30 18:31:44 +0000 |
commit | c23a457e72abe608715ac76f076f47dc42af07a5 (patch) | |
tree | 2772049aaf84b5c9d0ed12ec8d86812f7a7904b6 /vendor/anstream/src/lib.rs | |
parent | Releasing progress-linux version 1.73.0+dfsg1-1~progress7.99u1. (diff) | |
download | rustc-c23a457e72abe608715ac76f076f47dc42af07a5.tar.xz rustc-c23a457e72abe608715ac76f076f47dc42af07a5.zip |
Merging upstream version 1.74.1+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'vendor/anstream/src/lib.rs')
-rw-r--r-- | vendor/anstream/src/lib.rs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/vendor/anstream/src/lib.rs b/vendor/anstream/src/lib.rs index 582fa5221..972113903 100644 --- a/vendor/anstream/src/lib.rs +++ b/vendor/anstream/src/lib.rs @@ -35,23 +35,23 @@ #![cfg_attr(docsrs, feature(doc_auto_cfg))] pub mod adapter; +pub mod stream; + mod buffer; #[macro_use] mod macros; mod auto; -mod lockable; -mod raw; +mod fmt; mod strip; #[cfg(all(windows, feature = "wincon"))] mod wincon; pub use auto::AutoStream; -pub use lockable::Lockable; -pub use raw::RawStream; pub use strip::StripStream; #[cfg(all(windows, feature = "wincon"))] pub use wincon::WinconStream; +#[allow(deprecated)] pub use buffer::Buffer; /// Create an ANSI escape code compatible stdout |