For the distribution of languages inside fuchsia, this is the output of "tokei -s lines" in the git checkout of fuchsia: <a href="https://gist.githubusercontent.com/est31/5c13979043e760a597a019999d5602de/raw/acd8458ab45ebac186dc1a0e700985fb68d663db/gistfile1.txt" rel="nofollow">https://gist.githubusercontent.com/est31/5c13979043e760a597a...</a><p>According to this, Rust is the language with the most lines in fuchsia. It's important to point out however that of those 2.2 million lines, 1.4 million come from the third_party directory, which includes vendored libraries, mostly Rust ones, and sometimes also multiple versions of a library. The src directory contributes 0.7 million lines of Rust. If you add up the two numbers, you get 2.1 million, so most Rust code resides in those two directories.<p>This is the tokei output of the src directory: <a href="https://gist.githubusercontent.com/est31/5c13979043e760a597a019999d5602de/raw/5e770560cb9dbdfa6e5d95d7bb741334f29e7aff/gistfile2.txt" rel="nofollow">https://gist.githubusercontent.com/est31/5c13979043e760a597a...</a><p>To compare those 0.7 million with other big Rust codebases: Servo has 0.39 million lines, the Rust compiler 1.4, and parity-ethereum has 0.18 (using tokei and only looking at the git repos here, without excluding and tests or including dependencies outside of the recursively checked out repo).