Skip to content

Commit 0cb79cf

Browse files
committed
Remove std feature
Signed-off-by: Denis Varlakov <denis@dfns.co>
1 parent 5d53357 commit 0cb79cf

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

round-based/CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,15 @@
1515
* Use `core::error::Error` trait which is now always implemented for all errors regardless whether `std` feature
1616
is enabled or not [#14]
1717
* Update `thiserror` dependency to v2
18+
* BREAKING: remove `std` feature, as the crate is fully no_std now
1819

1920
Migration guidelines:
2021
* Replace `dev` feature with `sim`
2122
* Instead of using `round_based::simulation::Simulation` from previous version, use
2223
`round_based::simulation::{run, run_with_setup}`
2324
* Take advantage of `SimResult::{expect_ok, expect_eq}` to reduce amount of the code
2425
in your tests
26+
* Remove `std` feature, if it was explicitly enabled
2527

2628
Other than simulation, there are no breaking changes in this release.
2729

round-based/Cargo.toml

-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,6 @@ sim = ["state-machine"]
4545
sim-async = ["sim", "tokio/sync", "tokio-stream", "futures-util/alloc"]
4646
derive = ["round-based-derive"]
4747
runtime-tokio = ["tokio"]
48-
std = []
4948

5049
[[test]]
5150
name = "derive"

0 commit comments

Comments
 (0)