sim: Fix resolver warning from cargo
Cargo prints a warning about conflicting resolvers being used. Fix this by explicitly setting the resolver in the project file. Signed-off-by: David Brown <david.brown@linaro.org>
This commit is contained in:
parent
847548a9ac
commit
d6a5a7344f
|
@ -1,6 +1,7 @@
|
||||||
[workspace]
|
[workspace]
|
||||||
members = ["sim"]
|
members = ["sim"]
|
||||||
exclude = ["ptest"]
|
exclude = ["ptest"]
|
||||||
|
resolver = "2"
|
||||||
|
|
||||||
# The simulator runs very slowly without optimization. A value of 1
|
# The simulator runs very slowly without optimization. A value of 1
|
||||||
# compiles in about half the time, but runs about 5-6 times slower. 2
|
# compiles in about half the time, but runs about 5-6 times slower. 2
|
||||||
|
|
Loading…
Reference in New Issue