From: Kent Gibson Date: Thu, 29 Jun 2023 10:14:55 +0000 (+0800) Subject: bindings: rust: fix unclear resolver warning X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=72cd9898edbdd6838dce8e84f7a35db2d637e0ae;p=qemu-gpiodev%2Flibgpiod.git bindings: rust: fix unclear resolver warning Fix the following warning: "some crates are on edition 2021 which defaults to `resolver = "2"`, but virtual workspaces default to `resolver = "1"`" Clarify the resolver selection as the 2021 edition by setting the workspace.resolver to "2". Signed-off-by: Kent Gibson Reviewed-by: Erik Schilling Signed-off-by: Bartosz Golaszewski --- diff --git a/bindings/rust/Cargo.toml b/bindings/rust/Cargo.toml index 2e026b4..e385027 100644 --- a/bindings/rust/Cargo.toml +++ b/bindings/rust/Cargo.toml @@ -9,3 +9,5 @@ members = [ "libgpiod", "libgpiod-sys" ] + +resolver = "2"