From f2063d281008c22018eb0186e08d554aae6b58c9 Mon Sep 17 00:00:00 2001 From: Lennart Kloock Date: Wed, 11 Aug 2021 20:10:36 +0200 Subject: [PATCH] Rerun readmes.sh --- tor-netdoc/README.md | 2 +- tor-rtmock/README.md | 1 + tor-units/README.md | 1 + 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/tor-netdoc/README.md b/tor-netdoc/README.md index cdf967122..04edc3c45 100644 --- a/tor-netdoc/README.md +++ b/tor-netdoc/README.md @@ -19,7 +19,7 @@ implement [Tor](https://www.torproject.org/) in Rust. ### Design notes -The crate is derived into three main parts. In the `parse` +The crate is derived into three main parts. In the [`parse`] module, we have the generic code that we use to parse different kinds of network documents. In the [`types`] module we have implementations for parsing specific data structures that are used diff --git a/tor-rtmock/README.md b/tor-rtmock/README.md index 1dc441748..6cb9abbef 100644 --- a/tor-rtmock/README.md +++ b/tor-rtmock/README.md @@ -59,6 +59,7 @@ to replace the internet _and_ the passage of time. (Here we're only replacing the internet.) ```rust +# use tor_rtmock::{MockSleepRuntime,MockNetRuntime,net::MockNetwork}; use tor_rtcompat::{TcpProvider,TcpListener}; use futures::io::AsyncReadExt; diff --git a/tor-units/README.md b/tor-units/README.md index 003fda600..993901d66 100644 --- a/tor-units/README.md +++ b/tor-units/README.md @@ -12,6 +12,7 @@ other parts of Arti. In particular, it provides: * a bounded i32 with both checked and clamping constructors, * an integer milliseconds wrapper with conversion to [`Duration`] + * an integer seconds wrapper with conversion to [`Duration`] * a percentage wrapper, to prevent accidental failure to divide by 100. * a SendMeVersion which can be compared only.