summaryrefslogtreecommitdiff
path: root/doc/HACKING
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2018-03-20 07:59:13 -0400
committerNick Mathewson <nickm@torproject.org>2018-03-20 07:59:13 -0400
commitcae7387ef2ddf6ed047904406e5bfc56686f27e6 (patch)
tree4f307356bf012451ec847ec451ec20fffc3529b2 /doc/HACKING
parent56ae6d8766583c5d9c860ee569207c0d75f17aa8 (diff)
parent74c767af29e793749e697eba8a206850b156521e (diff)
downloadtor-cae7387ef2ddf6ed047904406e5bfc56686f27e6.tar.gz
tor-cae7387ef2ddf6ed047904406e5bfc56686f27e6.zip
Merge branch 'maint-0.3.3'
Diffstat (limited to 'doc/HACKING')
-rw-r--r--doc/HACKING/CodingStandardsRust.md8
1 files changed, 6 insertions, 2 deletions
diff --git a/doc/HACKING/CodingStandardsRust.md b/doc/HACKING/CodingStandardsRust.md
index 731a7bb85e..72b62a3f57 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
---------------