Hacker News new | ask | show | jobs
by cm3 3697 days ago
Include both how? Make renamed copies to have two and modify the code to use the new names?
2 comments

It doesn't have to do any renaming or modifying of names. Rust has a module system, so each dependency will use the version they need.

The only time it doesn't Just Work is if one of those crates re-exports a type from the sub-crate in a public manner, and then you try to call something from the other crate with a value of that type. You'll get a compile-time error about mismatched types.

But it sounds like that's what's going on. Using foo-1.1 in bar.rs and foo-2.2 in rabbit.rs.
Sure. That will Just Work in every case _except_ if bar and rabbit both re-export a type from foo, and you try to use them together. If they don't re-export anything, then it all works just fine. No renaming or transformations needed.
Rust mangles symbols with version information, so it's no trouble to have two versions of the same library in the same binary if necessary.