Update README.

This commit is contained in:
whitequark 2017-03-05 06:18:50 +00:00
parent ad91787c47
commit c9a2ac7a40
1 changed files with 3 additions and 3 deletions

View File

@ -48,7 +48,7 @@ The UDP protocol is supported over IPv4.
### TCP layer ### 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. * TCP header checksum is supported.
* Multiple packets will be transmitted without waiting for an acknowledgement. * Multiple packets will be transmitted without waiting for an acknowledgement.
@ -71,7 +71,7 @@ To use the _smoltcp_ library in your project, add the following to `Cargo.toml`:
```toml ```toml
[dependencies] [dependencies]
smoltcp = "0.1" smoltcp = "0.3"
``` ```
The default configuration assumes a hosted environment, for ease of evaluation. The default configuration assumes a hosted environment, for ease of evaluation.
@ -79,7 +79,7 @@ You probably want to disable default features and configure them one by one:
```toml ```toml
[dependencies] [dependencies]
smoltcp = { version = ..., default-features = false, features = [...] } smoltcp = { version = "0.3", default-features = false, features = ["..."] }
``` ```
### Feature `std` ### Feature `std`