pelikan-io / rustcommon

Common Rust library
Apache License 2.0
26 stars 13 forks source link

Resolved the issue below, as reported by cargo clippy. #79

Closed martinfrances107 closed 1 year ago

martinfrances107 commented 1 year ago

Problem

This clippy warning

warning: some crates are on edition 2021 which defaults to `resolver = "2"`, but virtual workspaces default to `resolver = "1"`
note: to keep the current resolver, specify `workspace.resolver = "1"` in the workspace root's manifest
note: to use the edition 2021 resolver, specify `workspace.resolver = "2"` in the workspace root's manifest

Solution

Just followed the solution suggested in the warning

Result

No clippy warnings.