From 9a92f2f4e90f6059e5ec0b5374a336b54cb3f5d1 Mon Sep 17 00:00:00 2001 From: Andreas Backx Date: Tue, 2 Jan 2024 15:28:35 -0800 Subject: [PATCH] colored 1.9 -> 2.1.0 Summary: A newer version of colored adds support for true color terminal text coloring. The changelog only indicates "Alter Color interface to return Cow<'static, str>" besides the true color support as a "change" in the changelog and I'm not expecting people to really use this. If they do, I'll see it in Sandcastle? Reviewed By: dtolnay Differential Revision: D52391497 fbshipit-source-id: c08fffc171f7d5f9b75f96617aa673867ab45312 --- experimental/riptrace/Cargo.toml | 2 +- reverie-process/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/experimental/riptrace/Cargo.toml b/experimental/riptrace/Cargo.toml index c0f088a..bd2aae9 100644 --- a/experimental/riptrace/Cargo.toml +++ b/experimental/riptrace/Cargo.toml @@ -12,7 +12,7 @@ license = "BSD-2-Clause" anyhow = "1.0.75" async-trait = "0.1.71" clap = { version = "3.2.25", features = ["derive", "env", "regex", "unicode", "wrap_help"] } -colored = "1.9" +colored = "2.1.0" reverie-host = { version = "0.1.0", path = "../reverie-host" } reverie-process = { version = "0.1.0", path = "../../reverie-process" } riptrace-rpc = { version = "0.1.0", path = "rpc" } diff --git a/reverie-process/Cargo.toml b/reverie-process/Cargo.toml index c522955..3bfdd7f 100644 --- a/reverie-process/Cargo.toml +++ b/reverie-process/Cargo.toml @@ -11,7 +11,7 @@ license = "BSD-2-Clause" [dependencies] bincode = "1.3.3" bitflags = "1.3" -colored = "1.9" +colored = "2.1.0" futures = { version = "0.3.28", features = ["async-await", "compat"] } libc = "0.2.139" nix = "0.25"