]> git.lizzy.rs Git - rust.git/commitdiff
Add note about production deployments.
authorSteve Klabnik <steve@steveklabnik.com>
Wed, 30 Jul 2014 23:17:47 +0000 (19:17 -0400)
committerAlex Crichton <alex@alexcrichton.com>
Thu, 31 Jul 2014 18:50:24 +0000 (11:50 -0700)
Fixes #11511.

src/doc/complement-lang-faq.md

index ce037251e46b44940fa754d5c8f6185647cfff9d..c5ddd180ee8e13186d23b6de106d3cd5bb6bb78a 100644 (file)
@@ -1,6 +1,5 @@
 % Language FAQ
 
-
 ## Are there any big programs written in it yet? I want to read big samples.
 
 There aren't many large programs yet. The Rust [compiler][rustc], 60,000+ lines at the time of writing, is written in Rust. As the oldest body of Rust code it has gone through many iterations of the language, and some parts are nicer to look at than others. It may not be the best code to learn from, but [borrowck] and [resolve] were written recently.
@@ -29,6 +28,18 @@ You may also be interested in browsing [GitHub's Rust][github-rust] page.
 
 [github-rust]: https://github.com/trending?l=rust
 
+## Is anyone using Rust in production?
+
+Currently, Rust is still pre-1.0, and so we don't recommend that you use Rust
+in production unless you know exactly what you're getting into.
+
+That said, there are two production deployments of Rust that we're aware of:
+
+* [OpenDNS](http://labs.opendns.com/2013/10/04/zeromq-helping-us-block-malicious-domains/)
+* [Skylight](http://skylight.io)
+
+Let the fact that this is an easily countable number be a warning.
+
 ## Does it run on Windows?
 
 Yes. All development happens in lock-step on all 3 target platforms. Using MinGW, not Cygwin. Note that the windows implementation currently has some limitations: in particular 64-bit build is [not fully supported yet][win64], and all executables created by rustc [depend on libgcc DLL at runtime][libgcc].