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
Currently even the library associated with this project will require that it is compiled on either unix-like or windows target because of a transitive dependency. same-file is a dependency of walkdir which has 2 architecture dependent implementations of it's functionality. While the direct dependency on walkdir is in the dev-dependencies section, which would avoid any issues for users of the mdbook library, it happens to be a dependency of handlebars as well. The handlebars crate has a feature gate to remove this depenency (no_dir_source) which would remove this problem.
According to the unit tests adopting this feature shouldn't break anything.
The text was updated successfully, but these errors were encountered:
Currently even the library associated with this project will require that it is compiled on either unix-like or windows target because of a transitive dependency.
same-file
is a dependency ofwalkdir
which has 2 architecture dependent implementations of it's functionality. While the direct dependency onwalkdir
is in thedev-dependencies
section, which would avoid any issues for users of the mdbook library, it happens to be a dependency ofhandlebars
as well. Thehandlebars
crate has a feature gate to remove this depenency (no_dir_source
) which would remove this problem.According to the unit tests adopting this feature shouldn't break anything.
The text was updated successfully, but these errors were encountered: