1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
|
Index: rustup/Cargo.toml
===================================================================
--- rustup.orig/Cargo.toml
+++ rustup/Cargo.toml
@@ -24,17 +24,6 @@ reqwest-default-tls = ["download/reqwest
# Include in the default set to disable self-update and uninstall.
no-self-update = []
-# Include an Opentelemetry sink for tracing events
-otel = [
- "dep:opentelemetry-otlp",
- "dep:tracing-opentelemetry",
- "dep:tracing-subscriber",
- "dep:opentelemetry",
- "dep:opentelemetry_sdk",
- "dep:tokio",
- "dep:tracing",
-]
-
# Exports code dependent on private interfaces for the integration test suite
test = ["dep:walkdir"]
@@ -64,9 +53,6 @@ opener = "0.6"
openssl = { version = "=0.10.57", optional = true }
openssl-src = { version = "=111.28.1", optional = true }
openssl-sys = { version = "=0.9.92", optional = true }
-opentelemetry = { workspace = true, optional = true }
-opentelemetry_sdk = { workspace = true, optional = true }
-opentelemetry-otlp = { workspace = true, optional = true }
pulldown-cmark = { version = "0.10", default-features = false }
rand = "0.8"
regex = "1"
@@ -87,7 +73,6 @@ thiserror.workspace = true
threadpool = "1"
tokio = { workspace = true, optional = true }
toml = "0.8"
-tracing-opentelemetry = { workspace = true, optional = true }
tracing-subscriber = { workspace = true, optional = true, features = ["env-filter"] }
tracing = { workspace = true, optional = true }
url.workspace = true
@@ -115,9 +100,6 @@ anyhow = "1.0.69"
enum_dispatch = "0.3.11"
fs_at = "0.1.6"
once_cell = "1.18.0"
-opentelemetry = "0.22"
-opentelemetry_sdk = { version = "0.22", features = ["rt-tokio"] }
-opentelemetry-otlp = "0.15"
proptest = "1.1.0"
rustup-macros = { path = "rustup-macros" }
tempfile = "3.8"
@@ -125,7 +107,6 @@ termcolor = "1.2"
thiserror = "1.0"
tokio = { version = "1.26.0", default-features = false, features = ["rt-multi-thread"] }
tracing = "0.1"
-tracing-opentelemetry = "0.23"
tracing-subscriber = "0.3.16"
url = "2.4"
walkdir = "2"
|