File tree 2 files changed +7
-1
lines changed
2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -19,6 +19,7 @@ debug = 1
19
19
async-std = " 1.10"
20
20
async-trait = " 0.1"
21
21
bytes = " 1"
22
+ cc = " =1.0.105" # pinning version supporting rustc 1.65
22
23
criterion = " 0.5"
23
24
futures-core = " 0.3"
24
25
futures-executor = " 0.3"
@@ -47,4 +48,4 @@ tokio-stream = "0.1.1"
47
48
tracing = { version = " 0.1" , default-features = false }
48
49
tracing-core = { version = " 0.1" , default-features = false }
49
50
tracing-subscriber = { version = " 0.3" , default-features = false }
50
- url = { version = " =2.5.0" , default-features = false } # pinning the version supporting rustc 1.65
51
+ url = { version = " =2.5.0" , default-features = false } # pinning the version supporting rustc 1.65
Original file line number Diff line number Diff line change @@ -30,6 +30,11 @@ thiserror = { workspace = true }
30
30
[target .'cfg(all(target_arch = "wasm32", not(target_os = "wasi")))' .dependencies ]
31
31
js-sys = " 0.3.63"
32
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
+
33
38
[features ]
34
39
default = [" trace" , " metrics" , " logs" ]
35
40
trace = [" pin-project-lite" ]
You can’t perform that action at this time.
0 commit comments