Hacker News new | ask | show | jobs
by est31 2078 days ago
Those are the direct dependencies. They have dependencies of their own. What counts is the entire DAG traversal including all transitive dependencies.
1 comments

I count 67 --> 42 (after removing the dev only deps)

https://gist.github.com/seg-lol/0d22cf5002f890305cfd094f9ed1...

*edit, passed in -e no-dev to `cargo tree`, thanks @est31 for the suggestion

The number is smaller than that. You need to pass -e no-dev to cargo tree to filter out the dev-dependencies (which are only relevant for hyper development).
Thanks!