Skip to content

Commit

Permalink
Update README.
Browse files Browse the repository at this point in the history
whitequark committed Mar 5, 2017

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
1 parent 7e5c4ce commit bb2edf4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -48,7 +48,7 @@ The UDP protocol is supported over IPv4.

### TCP layer

The TCP protocol is supported over IPv4. Only server sockets are supported.
The TCP protocol is supported over IPv4. Server and client sockets are supported.

* TCP header checksum is supported.
* Multiple packets will be transmitted without waiting for an acknowledgement.
@@ -71,15 +71,15 @@ To use the _smoltcp_ library in your project, add the following to `Cargo.toml`:

```toml
[dependencies]
smoltcp = "0.1"
smoltcp = "0.3"
```

The default configuration assumes a hosted environment, for ease of evaluation.
You probably want to disable default features and configure them one by one:

```toml
[dependencies]
smoltcp = { version = ..., default-features = false, features = [...] }
smoltcp = { version = "0.3", default-features = false, features = ["..."] }
```

### Feature `std`

0 comments on commit bb2edf4

Please sign in to comment.