├── .gitignore ├── .travis.yml ├── LICENSE ├── book.toml └── src ├── SUMMARY.md ├── achievements.md ├── achievements ├── awards.md ├── metrics.md └── users.md ├── comparisons.md ├── intro.md ├── pitches.md ├── pitches ├── applications.md ├── applications │ ├── cli.md │ ├── embedded.md │ ├── libraries.md │ ├── net.md │ ├── systems.md │ └── web.md ├── background.md ├── background │ ├── c.md │ ├── cpp.md │ ├── go.md │ ├── java.md │ ├── js.md │ ├── python.md │ └── ruby.md ├── community.md ├── rust-2018.md └── rust.md ├── rebuttals.md └── rebuttals ├── mozilla.md ├── only-gc.md ├── only-speed.md └── only-systems.md /.gitignore: -------------------------------------------------------------------------------- 1 | book 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/rust-marketing/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/rust-marketing/HEAD/LICENSE -------------------------------------------------------------------------------- /book.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/rust-marketing/HEAD/book.toml -------------------------------------------------------------------------------- /src/SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/rust-marketing/HEAD/src/SUMMARY.md -------------------------------------------------------------------------------- /src/achievements.md: -------------------------------------------------------------------------------- 1 | # Notable achievements 2 | -------------------------------------------------------------------------------- /src/achievements/awards.md: -------------------------------------------------------------------------------- 1 | # Awards and recognition 2 | -------------------------------------------------------------------------------- /src/achievements/metrics.md: -------------------------------------------------------------------------------- 1 | # Metrics 2 | -------------------------------------------------------------------------------- /src/achievements/users.md: -------------------------------------------------------------------------------- 1 | # Production users 2 | -------------------------------------------------------------------------------- /src/comparisons.md: -------------------------------------------------------------------------------- 1 | # Comparisons 2 | -------------------------------------------------------------------------------- /src/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/rust-marketing/HEAD/src/intro.md -------------------------------------------------------------------------------- /src/pitches.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/rust-marketing/HEAD/src/pitches.md -------------------------------------------------------------------------------- /src/pitches/applications.md: -------------------------------------------------------------------------------- 1 | # Application areas 2 | -------------------------------------------------------------------------------- /src/pitches/applications/cli.md: -------------------------------------------------------------------------------- 1 | # Command-line apps 2 | -------------------------------------------------------------------------------- /src/pitches/applications/embedded.md: -------------------------------------------------------------------------------- 1 | # Embedded devices 2 | -------------------------------------------------------------------------------- /src/pitches/applications/libraries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/rust-marketing/HEAD/src/pitches/applications/libraries.md -------------------------------------------------------------------------------- /src/pitches/applications/net.md: -------------------------------------------------------------------------------- 1 | # Network services 2 | -------------------------------------------------------------------------------- /src/pitches/applications/systems.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/rust-marketing/HEAD/src/pitches/applications/systems.md -------------------------------------------------------------------------------- /src/pitches/applications/web.md: -------------------------------------------------------------------------------- 1 | # The web 2 | -------------------------------------------------------------------------------- /src/pitches/background.md: -------------------------------------------------------------------------------- 1 | # Tailored by background 2 | -------------------------------------------------------------------------------- /src/pitches/background/c.md: -------------------------------------------------------------------------------- 1 | # For C developers 2 | -------------------------------------------------------------------------------- /src/pitches/background/cpp.md: -------------------------------------------------------------------------------- 1 | # For C++ developers 2 | -------------------------------------------------------------------------------- /src/pitches/background/go.md: -------------------------------------------------------------------------------- 1 | # For Go developers -------------------------------------------------------------------------------- /src/pitches/background/java.md: -------------------------------------------------------------------------------- 1 | # For Java/C# developers 2 | -------------------------------------------------------------------------------- /src/pitches/background/js.md: -------------------------------------------------------------------------------- 1 | # For JavaScript developers 2 | -------------------------------------------------------------------------------- /src/pitches/background/python.md: -------------------------------------------------------------------------------- 1 | # For Python developers -------------------------------------------------------------------------------- /src/pitches/background/ruby.md: -------------------------------------------------------------------------------- 1 | # For Ruby developers -------------------------------------------------------------------------------- /src/pitches/community.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang/rust-marketing/HEAD/src/pitches/community.md -------------------------------------------------------------------------------- /src/pitches/rust-2018.md: -------------------------------------------------------------------------------- 1 | # Rust 2018 2 | -------------------------------------------------------------------------------- /src/pitches/rust.md: -------------------------------------------------------------------------------- 1 | # Rust 2 | -------------------------------------------------------------------------------- /src/rebuttals.md: -------------------------------------------------------------------------------- 1 | # Rebuttals 2 | -------------------------------------------------------------------------------- /src/rebuttals/mozilla.md: -------------------------------------------------------------------------------- 1 | # Mozilla 2 | -------------------------------------------------------------------------------- /src/rebuttals/only-gc.md: -------------------------------------------------------------------------------- 1 | # Only for avoiding GC 2 | -------------------------------------------------------------------------------- /src/rebuttals/only-speed.md: -------------------------------------------------------------------------------- 1 | # Only for maximal speed 2 | -------------------------------------------------------------------------------- /src/rebuttals/only-systems.md: -------------------------------------------------------------------------------- 1 | # Only for systems programming 2 | --------------------------------------------------------------------------------