mirror of
https://github.com/servo/servo.git
synced 2025-08-03 12:40:06 +01:00
Explictly specify num_cpus version (#31310)
This fixes a warning from Cargo about relying on deprecated behavior: ``` warning: /home/loops/src/servo/servo/components/script/Cargo.toml: dependency (num_cpus) specified without providing a local path, Git repository, version, or workspace dependency to use. This will be considered an error in future versions warning: /home/loops/src/servo/servo/components/config/Cargo.toml: dependency (num_cpus) specified without providing a local path, Git repository, version, or workspace dependency to use. This will be considered an error in future versions ```
This commit is contained in:
parent
03ac032798
commit
410ead20b0
1 changed files with 1 additions and 1 deletions
|
@ -71,7 +71,7 @@ mime_guess = "2.0.3"
|
||||||
mozangle = "0.5.1"
|
mozangle = "0.5.1"
|
||||||
msg = { path = "components/shared/msg" }
|
msg = { path = "components/shared/msg" }
|
||||||
net_traits = { path = "components/shared/net" }
|
net_traits = { path = "components/shared/net" }
|
||||||
num_cpus = { workspace = true }
|
num_cpus = "1.1.0"
|
||||||
num-traits = "0.2"
|
num-traits = "0.2"
|
||||||
parking_lot = "0.12"
|
parking_lot = "0.12"
|
||||||
percent-encoding = "2.3"
|
percent-encoding = "2.3"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue