diff options
author | Nick Mathewson <nickm@torproject.org> | 2018-06-28 09:14:42 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2018-06-28 09:14:42 -0400 |
commit | 9cf335c9a5fe6767e90cc5cfdc1f5c95465edb10 (patch) | |
tree | 04e771dcb1c0c577b221a5a4f4b11ffa677972af /src/rust | |
parent | 544ab27a949406628809869111b7288017a5bcb1 (diff) | |
download | tor-9cf335c9a5fe6767e90cc5cfdc1f5c95465edb10.tar.gz tor-9cf335c9a5fe6767e90cc5cfdc1f5c95465edb10.zip |
Extract threading code into a new library.
Note that the workqueue code does *not* go here: it is logically at
a higher level, since it needs to use libevent and the networking
stack.
Diffstat (limited to 'src/rust')
-rw-r--r-- | src/rust/build.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/rust/build.rs b/src/rust/build.rs index 36f847d2e2..e17f9e5df2 100644 --- a/src/rust/build.rs +++ b/src/rust/build.rs @@ -154,6 +154,7 @@ pub fn main() { cfg.component("tor-sandbox"); cfg.component("tor-encoding-testing"); cfg.component("tor-net"); + cfg.component("tor-thread-testing"); cfg.component("tor-log"); cfg.component("tor-lock"); cfg.component("tor-fdio"); |