A few days ago, cross-compiling to JavaScript via Emscripten has finally hit nightly. I wanted to compile a project using glium
in that manner. However, there are still many Emscripten-related bugs in many crates. While maintainers usually fix those bugs quickly, they don't necessarily release those bug fixes to crates.io immediately.
In my case, glium
depends on glutin
. glutin
had a bug which is fixed now, but only in the git repository, not on crates.io
. Note: glutin
is not a direct dependency of my project; only an indirect one through glium
!
How do I tell Cargo to use the glutin
repository as source for glutin
instead of crates.io
?
You can use the
[replace]
section in your project'sCargo.toml
. You can find the documentation about that feature here in the Cargo documentation.In your case,
glium
depends onglutin 0.6.1
. The version0.6.1
on crates.io still contains the bug. So just add this to yourCargo.toml
:Note however,
But even in the case of a version-mismatch (the repository already contains a newer version), you could still be in luck if the crate's maintainer creates git tags for every version (many in the Rust community do). In that case you can just specify the tag:
Sadly, this won't work with
glutin
, because the maintainer did not create tags for every version. In that case you can simply find the last commit before the version was bumped and specify it withrev = 'b4a3d0...'
or specify a specific branch with thebranch = '...'
key.