From 80bedf021e6ff464b7c0dd2ed2a3593c142940f2 Mon Sep 17 00:00:00 2001 From: Alex van de Sandt Date: Fri, 12 Apr 2019 16:38:32 -0400 Subject: [PATCH] Update client README --- candid_client/README | 4 ++-- candid_client/src/lib.rs | 2 -- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/candid_client/README b/candid_client/README index 5495f63..bc67208 100644 --- a/candid_client/README +++ b/candid_client/README @@ -12,9 +12,9 @@ Documentation: https://docs.rs/crates/candid_client/ ### Prerequisites -CANdid Client itself has no special dependencies, but for it to be useful, you must be able to run CANdid server on your computer or another system accesible over the network. See [CANdid server](https://crates.io/crates/candid_server/) for more information. +CANdid Client itself only depends on [`byteorder`](https://crates.io/crates/byteorder). However, for it to be useful, you must be able to run CANdid server on your computer or another system accessible over the network. See [CANdid server](https://crates.io/crates/candid_server/) for mor information. -The example `echo` uses [`clap`](https://crates.io/crates/clap/) to handle command line arguments. +The example `echo` uses [`clap`](https://crates.io/crates/clap/) to handle command line arguments. The example `send` uses [`rand`](https://crates.io/crates/rand) to generate random data. ### Examples diff --git a/candid_client/src/lib.rs b/candid_client/src/lib.rs index ffb5643..46c4312 100644 --- a/candid_client/src/lib.rs +++ b/candid_client/src/lib.rs @@ -1,5 +1,3 @@ -//! Hello world! - pub mod candid_connection; pub mod frame; -- 2.51.2