diff --git a/Cargo.toml b/Cargo.toml index 14ad325..35de804 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "color-eyre" -version = "0.3.3" +version = "0.3.4" authors = ["Jane Lusby "] edition = "2018" license = "MIT OR Apache-2.0" @@ -21,8 +21,8 @@ tracing-error = { version = "0.1.2", optional = true } color-backtrace = "0.4.0" backtrace = "0.3.48" indenter = "0.3.0" -ansi_term = "0.12.1" -color-spantrace = { version = "0.1.2", optional = true } +ansi_term = "0.11" +color-spantrace = { version = "0.1.3", optional = true } once_cell = "1.4.0" [dev-dependencies] diff --git a/src/lib.rs b/src/lib.rs index f0d39ba..1bcba29 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -202,7 +202,7 @@ //! [`examples/custom_filter.rs`]: https://github.com/yaahc/color-eyre/blob/master/examples/custom_filter.rs //! [`examples/custom_section.rs`]: https://github.com/yaahc/color-eyre/blob/master/examples/custom_section.rs //! [`examples/multiple_errors.rs`]: https://github.com/yaahc/color-eyre/blob/master/examples/multiple_errors.rs -#![doc(html_root_url = "https://docs.rs/color-eyre/0.3.3")] +#![doc(html_root_url = "https://docs.rs/color-eyre/0.3.4")] #![cfg_attr(docsrs, feature(doc_cfg))] #![warn( missing_debug_implementations,