You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
According to the src folder in .cargo/registry, [email protected] is dependent on [email protected] which is dependent on [email protected]. Therefore, trying to cargo check a project that relies on it will give the following error message :
error: enum is private and its variants cannot be re-exported
--> <cargo registry path>\mustache-0.6.3\src\parser.rs:4:9
|
4 | pub use self::ParserState::*;
| ^^^^^^^^^^^^^^^^^^^^
...
43 | enum ParserState { TEXT, OTAG, TAG, CTAG }
| ---------------- help: consider making the enum public: `pub enum ParserState`
error: enum is private and its variants cannot be re-exported
--> <cargo registry path>\mustache-0.6.3\src\parser.rs:5:9
|
5 | pub use self::TokenClass::*;
| ^^^^^^^^^^^^^^^^^^^
...
18 | enum TokenClass {
| --------------- help: consider making the enum public: `pub enum TokenClass`
Compiling gdi32-sys v0.2.0
error: aborting due to 2 previous errors
error: Could not compile `mustache`.
According to the
src
folder in.cargo/registry
,[email protected]
is dependent on[email protected]
which is dependent on[email protected]
. Therefore, trying tocargo check
a project that relies on it will give the following error message :Modifying the dependency to
[email protected]
should do the trick.Information on my setup:
The text was updated successfully, but these errors were encountered: