Rustaceans at the border
Rustaceans at the border
Posted Apr 14, 2022 20:09 UTC (Thu) by mb (subscriber, #50428)Parent article: Rustaceans at the border
One (IMO) major problem with letting each kernel module choose to fetch random crates from crates.io is that it will result in multiple incompatible versions of the same crate being built into the kernel.
E.g. the module wants foo-1.0 and a dependency of the module wants foo-2.0. And another module requires foo-3.0. Therefore, three versions are included.
The kernel as a whole must agree on which crate versions to use.
