Skip to content
This repository has been archived by the owner on Jan 13, 2025. It is now read-only.

Document libssl-dev dependency in README #525

Merged
merged 2 commits into from
Jul 2, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -238,6 +238,11 @@ If your rustc version is lower than 1.26.1, please update it:
$ rustup update
```

On Linux systems you may need to install libssl-dev. On Ubuntu:
```bash
$ sudo apt-get install libssl-dev
```

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

on some systems, pkg-config isn't installed, either...

Download the source code:

```bash
Expand Down
2 changes: 1 addition & 1 deletion src/thin_client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ impl ThinClient {
let data = serialize(&req).expect("serialize GetLastId in pub fn get_last_id");
let mut done = false;
while !done {
eprintln!("get_last_id send_to {}", &self.requests_addr);
debug!("get_last_id send_to {}", &self.requests_addr);
self.requests_sender
.send_to(&data, &self.requests_addr)
.expect("buffer error in pub fn get_last_id");
Expand Down