diff options
author | Nick Mathewson <nickm@torproject.org> | 2018-03-20 07:58:29 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2018-03-20 07:58:29 -0400 |
commit | 74c767af29e793749e697eba8a206850b156521e (patch) | |
tree | 296d81a455b3f6a993d050d1bed209c7caa80c75 /doc | |
parent | fd36bd8971db1f22546569edb537f9777415a0d6 (diff) | |
download | tor-74c767af29e793749e697eba8a206850b156521e.tar.gz tor-74c767af29e793749e697eba8a206850b156521e.zip |
Note that we require latest stable rust.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/HACKING/CodingStandardsRust.md | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/doc/HACKING/CodingStandardsRust.md b/doc/HACKING/CodingStandardsRust.md index d0b17c1604..ad8cd9d04b 100644 --- a/doc/HACKING/CodingStandardsRust.md +++ b/doc/HACKING/CodingStandardsRust.md @@ -54,13 +54,17 @@ If you have any external modules as dependencies (e.g. `extern crate libc;`), you MUST declare them in your crate's `lib.rs` and NOT in any other module. - Dependencies --------------- + Dependencies and versions +--------------------------- In general, we use modules from only the Rust standard library whenever possible. We will review including external crates on a case-by-case basis. +Currently, Tor requires that you use the latest stable Rust version. At +some point in the future, we will freeze on a given stable Rust version, +to ensure backward compatibility with stable distributions that ship it. + Documentation --------------- |