With all due respect, 166 packages to compile for a 5 line hello-word is so Nodejsy. It is a smell, a red flag.
We should learn more from Go and Erlang.
You can use the `cargo graph` [0] command to get a graphviz view of the dependency graph. The `Cargo.lock` file which Cargo generates should also contain all the information you want in machine-readable form.
If you try to compile hello-world in C, you would need a gigantic libc.so, with a lot of stuff you do not need.
These 166 packages you need to compile Rocket, not your hello-world. Rocket itself is much more complex then your hello-world, like libc.so is much more complex than hello-world coded in C, I see nothing wrong with it. Rocket and libc.so were created for solving a wide class of problems and hello-world is just one problem from that class.
steveklabnik|7 years ago
jake_the_third|7 years ago
Yikes!
Does anyone know where I can get an overview of the entirety of rocket's dependency graph. Crates.io only lists 11 direct dependencies.
TimNN|7 years ago
[0]: https://github.com/kbknapp/cargo-graph
IshKebab|7 years ago
https://travis-ci.org/SergioBenitez/Rocket/jobs/465537062
ordu|7 years ago
These 166 packages you need to compile Rocket, not your hello-world. Rocket itself is much more complex then your hello-world, like libc.so is much more complex than hello-world coded in C, I see nothing wrong with it. Rocket and libc.so were created for solving a wide class of problems and hello-world is just one problem from that class.
IshKebab|7 years ago
unknown|7 years ago
[deleted]