Dynamic libraries with Rust
Sometimes you need to run some functions that are provided by a 3rd party, or the code must be configurable at runtime. This is where dynamic libraries come in handy. In Linux those libraries end with the extension .so while in macOS they have the extension .dylib. Windows uses the extension .dll for dynamic libraries.
Dynamic libraries in Rust According to the Rust documentation there are two types of dynamic libaries:
[Read More]