@complexmath @cwebber rust uses platform libraries, allows you to build dynamic libraries with C ABI's, etc. the main issue with dynamic libraries in rust is that the story for building dynamic libraries with rust ABI's and using them in your rust code is poorly supported. so usually even when you build a dynamic library you statically link all of your rust dependencies
@complexmath @cwebber i definitely agree that rust's ecosystem tends to be hostile to dynamic linking, but it seems like from this thread that a lot of people are getting the impression that rust doesn't allow dynamic linking at all, and that just isn't true