So I've run into a problem where I have one dependency that uses unstable features, and so requires nightly - but I have another dependency (glium) which is segfaulting on current nightly, but not on current stable.
What's the best way of dealing with this that doesn't require me to wait for nightly/glium to be fixed? Is there a way of using a specific nightly version that corresponds to current stable?
Or is there a way to compile my nightly-only dependency separately and then link it to the rest of the project compiled in stable rust?