diff options
author | Isis Lovecruft <isis@torproject.org> | 2018-02-08 22:08:11 +0000 |
---|---|---|
committer | Isis Lovecruft <isis@torproject.org> | 2018-02-10 02:15:06 +0000 |
commit | 3c4e006e7e9597ef0d478ef63c811c764926bfbe (patch) | |
tree | 35a96e5fe802960d9b879308e215b7fc86921bab /src/rust/protover/lib.rs | |
parent | 8fff331bb095dc6f5e2fe2ecfc9ab08ea9e2fe97 (diff) | |
download | tor-3c4e006e7e9597ef0d478ef63c811c764926bfbe.tar.gz tor-3c4e006e7e9597ef0d478ef63c811c764926bfbe.zip |
rust: Use tor_util::strings utils for protover_get_supported_protocols.
Diffstat (limited to 'src/rust/protover/lib.rs')
-rw-r--r-- | src/rust/protover/lib.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/rust/protover/lib.rs b/src/rust/protover/lib.rs index fe8c0f9bb2..8e80fcef4c 100644 --- a/src/rust/protover/lib.rs +++ b/src/rust/protover/lib.rs @@ -26,6 +26,7 @@ extern crate libc; extern crate smartlist; extern crate external; extern crate tor_allocate; +#[macro_use] extern crate tor_util; mod protover; |