I would like to ask you a question: Two crates in the workspace each introduced two conflicting features of a dependency package. How to solve it?
# compile_error!("`vendored` and `module` features are mutually exclusive");
# crate 1
mlua = { version = "0.10.2", features = ["lua54", "module"] }
# crate 2
mlua = { version = "0.10.2", features = ["lua54", "vendored"] }
Both features are what I need. This is my normal requirement. I hope this compilation error can be solved.
G3G4X5X6 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.