Increase MSRV to 1.68

This commit is contained in:
2023-03-11 12:12:54 +01:00
parent 44fe3f0e76
commit b7e0f8e252
4 changed files with 17 additions and 8 deletions

View File

@@ -39,7 +39,7 @@ jobs:
- uses: dtolnay/rust-toolchain@v1 - uses: dtolnay/rust-toolchain@v1
with: with:
toolchain: "1.51" toolchain: "1.68"
- run: cargo test - run: cargo test

View File

@@ -6,6 +6,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased] ## [Unreleased]
### Changed
- Use dynamic dispatch internally to save on code gen. External API unchanged.
- No longer heap-allocate futures.
### Breaking
- Minimum supported Rust version bumped to 1.68.
## [0.1.1] - 2022-09-05 ## [0.1.1] - 2022-09-05
### Fixed ### Fixed

View File

@@ -1,12 +1,11 @@
[package] [package]
name = "beul" name = "beul"
version = "0.1.1" version = "0.1.1"
# Edition 2021 is not available in MSRV edition = "2021"
edition = "2018"
license = "MIT OR Apache-2.0" license = "MIT OR Apache-2.0"
description = "It executes futures" description = "It executes futures"
repository = "https://github.com/bertptrs/beul/" repository = "https://github.com/bertptrs/beul/"
rust-version = "1.51" rust-version = "1.68"
authors = [ authors = [
"Bert Peters", "Bert Peters",
] ]

View File

@@ -1,6 +1,7 @@
# Beul # Beul
Beul is a minimalistic futures executor. No dependencies, no unsafe rust. Beul is a minimalistic futures executor. No dependencies, no unsafe rust. It simply executes
futures.
## Usage ## Usage
@@ -12,8 +13,8 @@ beul::execute(async {});
### Backwards compatibility ### Backwards compatibility
This crate requires at least Rust 1.51, due to its reliance on [Wake]. Increases in this version This crate requires at least Rust 1.68, due to its reliance on [std::pin::pin!]. Increases in this
will be considered breaking changes. This crate follows semantic versioning. version will be considered breaking changes. This crate follows semantic versioning.
### Limitations ### Limitations
@@ -37,4 +38,4 @@ work by you, as defined in the Apache-2.0 license, shall be dual licensed as abo
additional terms or conditions. additional terms or conditions.
[Tokio]: https://tokio.rs/ [Tokio]: https://tokio.rs/
[Wake]: https://doc.rust-lang.org/std/task/trait.Wake.html [std::pin::pin!]: https://doc.rust-lang.org/std/pin/macro.pin.html