Skip to content

Commit 700c428

Browse files
committed
Remove is-terminal
Signed-off-by: Ryan Levick <[email protected]>
1 parent 8cc0d19 commit 700c428

File tree

6 files changed

+3
-9
lines changed

6 files changed

+3
-9
lines changed

Cargo.lock

Lines changed: 0 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,6 @@ hyper-util = { version = "0.1", features = ["tokio"] }
139139
indexmap = "2"
140140
itertools = "0.14"
141141
lazy_static = "1.5"
142-
opentelemetry = { version = "0.28", features = ["metrics", "trace", "logs"] }
143142
path-absolutize = "3"
144143
quote = "1"
145144
rand = "0.9"

crates/plugins/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ chrono = { workspace = true, features = ["serde"] }
1010
dirs = { workspace = true }
1111
fd-lock = "4"
1212
flate2 = { workspace = true }
13-
is-terminal = "0.4"
1413
path-absolutize = { workspace = true }
1514
reqwest = { workspace = true, features = ["json"] }
1615
semver = { workspace = true, features = ["serde"] }

crates/plugins/src/badger/mod.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
mod store;
22

3+
use std::io::IsTerminal;
4+
35
use self::store::{BadgerRecordManager, PreviousBadger};
46
use crate::manifest::PluginManifest;
5-
use is_terminal::IsTerminal;
67

78
const BADGER_TIMEOUT_DAYS: i64 = 14;
89

crates/telemetry/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ edition = { workspace = true }
88
anyhow = { workspace = true }
99
http0 = { version = "0.2.9", package = "http" }
1010
http1 = { version = "1.0.0", package = "http" }
11-
opentelemetry = { workspace = true }
11+
opentelemetry = { version = "0.28", features = ["metrics", "trace", "logs"] }
1212
opentelemetry-appender-tracing = "0.28"
1313
opentelemetry-otlp = { version = "0.28", features = ["grpc-tonic"] }
1414
opentelemetry_sdk = { version = "0.28", features = ["rt-tokio", "spec_unstable_logs_enabled", "metrics"] }

supply-chain/config.toml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -808,10 +808,6 @@ criteria = "safe-to-deploy"
808808
version = "2.7.1"
809809
criteria = "safe-to-deploy"
810810

811-
[[exemptions.is-terminal]]
812-
version = "0.4.4"
813-
criteria = "safe-to-deploy"
814-
815811
[[exemptions.itertools]]
816812
version = "0.10.5"
817813
criteria = "safe-to-deploy"

0 commit comments

Comments
 (0)