From 21085a0e254fc14cea43bf1d8394709a50bf1bfa Mon Sep 17 00:00:00 2001 From: LukaDev <47296785+lukadev-0@users.noreply.github.com> Date: Thu, 26 Dec 2024 21:32:44 +0100 Subject: [PATCH] chore: remove tracing-indicatif --- Cargo.lock | 53 ----------------------------------------------------- Cargo.toml | 7 +------ 2 files changed, 1 insertion(+), 59 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index b0a9ec9..5d69f6a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -357,12 +357,6 @@ version = "1.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "69f7f8c3906b62b754cd5326047894316021dcfe5a194c8ea52bdd94934a3457" -[[package]] -name = "arrayvec" -version = "0.7.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50" - [[package]] name = "async-broadcast" version = "0.7.1" @@ -2880,7 +2874,6 @@ dependencies = [ "number_prefix", "portable-atomic", "unicode-width 0.2.0", - "vt100", "web-time", ] @@ -3697,7 +3690,6 @@ dependencies = [ "toml", "toml_edit", "tracing", - "tracing-indicatif", "tracing-subscriber", "url", "wax", @@ -5267,18 +5259,6 @@ dependencies = [ "valuable", ] -[[package]] -name = "tracing-indicatif" -version = "0.3.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "74ba258e9de86447f75edf6455fded8e5242704c6fccffe7bf8d7fb6daef1180" -dependencies = [ - "indicatif", - "tracing", - "tracing-core", - "tracing-subscriber", -] - [[package]] name = "tracing-log" version = "0.2.0" @@ -5476,39 +5456,6 @@ version = "0.9.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a" -[[package]] -name = "vt100" -version = "0.15.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "84cd863bf0db7e392ba3bd04994be3473491b31e66340672af5d11943c6274de" -dependencies = [ - "itoa", - "log", - "unicode-width 0.1.14", - "vte", -] - -[[package]] -name = "vte" -version = "0.11.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f5022b5fbf9407086c180e9557be968742d839e68346af7792b8592489732197" -dependencies = [ - "arrayvec", - "utf8parse", - "vte_generate_state_changes", -] - -[[package]] -name = "vte_generate_state_changes" -version = "0.1.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2e369bee1b05d510a7b4ed645f5faa90619e05437111783ea5848f28d97d3c2e" -dependencies = [ - "proc-macro2", - "quote", -] - [[package]] name = "walkdir" version = "2.5.0" diff --git a/Cargo.toml b/Cargo.toml index 0462742..14c2353 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -16,7 +16,7 @@ bin = [ "dep:tracing-subscriber", "reqwest/json", "dep:indicatif", - "dep:tracing-indicatif", + "dep:inquire", "dep:toml_edit", "dep:colored", @@ -83,7 +83,6 @@ clap = { version = "4.5.23", features = ["derive"], optional = true } dirs = { version = "5.0.1", optional = true } tracing-subscriber = { version = "0.3.19", features = ["env-filter"], optional = true } indicatif = { version = "0.17.9", optional = true } -tracing-indicatif = { version = "0.3.8", optional = true } inquire = { version = "0.7.5", optional = true } [target.'cfg(target_os = "windows")'.dependencies] @@ -101,7 +100,3 @@ opt-level = "s" lto = true incremental = true codegen-units = 1 - -[profile.release.package.pesde-registry] -# add debug symbols for Sentry stack traces -debug = "full"