File tree 3 files changed +3
-7
lines changed
3 files changed +3
-7
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,6 @@ 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
23
22
criterion = " 0.5"
24
23
futures-core = " 0.3"
25
24
futures-executor = " 0.3"
@@ -46,4 +45,4 @@ tokio-stream = "0.1.1"
46
45
tracing = { version = " 0.1" , default-features = false }
47
46
tracing-core = { version = " 0.1" , default-features = false }
48
47
tracing-subscriber = { version = " 0.3" , default-features = false }
49
- url = { version = " = 2.5.0 " , default-features = false } # pinning the version supporting rustc 1.65
48
+ url = { version = " 2.5" , default-features = false } # pinning the version supporting rustc 1.65
Original file line number Diff line number Diff line change @@ -30,11 +30,6 @@ 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
-
38
33
[features ]
39
34
default = [" trace" , " metrics" , " logs" ]
40
35
trace = [" pin-project-lite" ]
Original file line number Diff line number Diff line change @@ -6,3 +6,5 @@ function patch_version() {
6
6
cargo update -p $1 :$latest_version --precise $2
7
7
}
8
8
9
+ patch_version cc 1.0.105
10
+ patch_version url 2.5.0
You can’t perform that action at this time.
0 commit comments