|
|
|
|
|
by SkiFire13
165 days ago
|
|
> I'd like to have a stable Rust ABI to make safe plugin systems A stable ABI would allow making more robust Rust-Rust plugin systems, but I wouldn't consider that "safe"; dynamic linking is just fundamentally unsafe. > Large binaries could also be broken down into dynamic libraries and make rebuilds much faster at the cost of leaving some optimizations on the table. This can already be done within a single project by using the dylib crate type. |
|