summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2018-08-16 08:35:31 -0400
committerNick Mathewson <nickm@torproject.org>2018-08-16 08:35:31 -0400
commita7ea639f12d9a18c76c8a1c4e7eb00e75887a34d (patch)
treec00125e898b8f9169ca15872b303342c354d478a /doc
parentd029a5162d0f2a3255630500f9c81cc4f7bdc103 (diff)
parent2deee972a37a8b36040f0f37091906b8dec61b25 (diff)
downloadtor-a7ea639f12d9a18c76c8a1c4e7eb00e75887a34d.tar.gz
tor-a7ea639f12d9a18c76c8a1c4e7eb00e75887a34d.zip
Merge branch 'maint-0.3.4'
Diffstat (limited to 'doc')
-rw-r--r--doc/HACKING/GettingStartedRust.md8
1 files changed, 5 insertions, 3 deletions
diff --git a/doc/HACKING/GettingStartedRust.md b/doc/HACKING/GettingStartedRust.md
index a533ba8a27..aa29c097da 100644
--- a/doc/HACKING/GettingStartedRust.md
+++ b/doc/HACKING/GettingStartedRust.md
@@ -122,9 +122,10 @@ the module calls. Modules which call fewer other modules are better targets.
Strive to change the C API as little as possible.
-We are currently targeting Rust nightly, *for now*. We expect this to
-change moving forward, as we understand more about which nightly
-features we need. It is on our TODO list to try to cultivate good
+We are currently targetting Rust stable. (See CodingStandardsRust.md for more
+details.)
+
+It is on our TODO list to try to cultivate good
standing with various distro maintainers of `rustc` and `cargo`, in
order to ensure that whatever version we solidify on is readily
available.
@@ -139,6 +140,7 @@ Where <name_of_c_object> can be an enum, struct, constant, etc. Then,
do the same in the C code, to note that rust will need to be changed
when the C does.
+
Adding your Rust module to Tor's build system
-----------------------------------------------