Merge pull request #526 from thibautvdv/toolchain

Update MSV of Rust
This commit is contained in:
Dario Nieuwenhuis 2021-09-10 15:37:50 +02:00 committed by GitHub
commit 27665865f6
3 changed files with 6 additions and 6 deletions

View File

@ -17,7 +17,7 @@ jobs:
- uses: actions-rs/toolchain@v1 - uses: actions-rs/toolchain@v1
with: with:
profile: minimal profile: minimal
toolchain: 1.49.0 toolchain: 1.53.0
override: true override: true
components: clippy components: clippy
- uses: actions-rs/clippy-check@v1 - uses: actions-rs/clippy-check@v1

View File

@ -15,7 +15,7 @@ jobs:
# Failure is permitted on nightly. # Failure is permitted on nightly.
rust: rust:
- stable - stable
- 1.46.0 - 1.53.0
- nightly - nightly
features: features:
@ -62,7 +62,7 @@ jobs:
# Failure is permitted on nightly. # Failure is permitted on nightly.
rust: rust:
- stable - stable
- 1.46.0 - 1.53.0
- nightly - nightly
features: features:

View File

@ -6,7 +6,7 @@ include complicated compile-time computations, such as macro or type tricks, eve
at cost of performance degradation. at cost of performance degradation.
_smoltcp_ does not need heap allocation *at all*, is [extensively documented][docs], _smoltcp_ does not need heap allocation *at all*, is [extensively documented][docs],
and compiles on stable Rust 1.46 and later. and compiles on stable Rust 1.53 and later.
_smoltcp_ achieves [~Gbps of throughput](#examplesbenchmarkrs) when tested against _smoltcp_ achieves [~Gbps of throughput](#examplesbenchmarkrs) when tested against
the Linux TCP stack in loopback mode. the Linux TCP stack in loopback mode.
@ -125,7 +125,7 @@ To use the _smoltcp_ library in your project, add the following to `Cargo.toml`:
```toml ```toml
[dependencies] [dependencies]
smoltcp = "0.5" smoltcp = "0.7.5"
``` ```
The default configuration assumes a hosted environment, for ease of evaluation. The default configuration assumes a hosted environment, for ease of evaluation.
@ -133,7 +133,7 @@ You probably want to disable default features and configure them one by one:
```toml ```toml
[dependencies] [dependencies]
smoltcp = { version = "0.5", default-features = false, features = ["log"] } smoltcp = { version = "0.7.5", default-features = false, features = ["log"] }
``` ```
### Feature `std` ### Feature `std`