We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b550884 commit b7fe43cCopy full SHA for b7fe43c
Cargo.toml
@@ -19,6 +19,7 @@ debug = 1
19
async-std = "1.10"
20
async-trait = "0.1"
21
bytes = "1"
22
+cc = "=1.0.105" # pinning version supporting rustc 1.65
23
criterion = "0.5"
24
futures-core = "0.3"
25
futures-executor = "0.3"
opentelemetry/Cargo.toml
@@ -30,6 +30,11 @@ thiserror = { workspace = true }
30
[target.'cfg(all(target_arch = "wasm32", not(target_os = "wasi")))'.dependencies]
31
js-sys = "0.3.63"
32
33
+# This cfg can't ever be enabled but cargo will respect it anyway.
34
+# Meaning we can use this to pin unused transitive dependencies.
35
+[target.'cfg(any())'.dependencies]
36
+cc = { workspace = true }
37
+
38
[features]
39
default = ["trace", "metrics", "logs"]
40
trace = ["pin-project-lite"]
0 commit comments