|
|
|
|
|
by morning-coffee
181 days ago
|
|
> I want less code. I want to limit the amount of 3rd party code I pull in. This is mostly due to supply chain disasters over on NPM scaring me and the amount of code dependencies bringing in see rust dependencies scare me. `anyhow` has exactly one optional dependency (backtrace).
`thiserror` has three (proc-macro2, quote, syn) which are at the base of practically the entire Rust ecosystem. Unless the author has zero dependencies in general, I'll bet they have all of the above dependencies already. ¯\_(°ペ)_/¯ |
|