proptest-rs / proptest

Hypothesis-like property testing for Rust
Apache License 2.0
1.69k stars 158 forks source link

state-machine: fix logging by adding "std" feature #355

Closed tzemanovic closed 1 year ago

tzemanovic commented 1 year ago

Before the feature was finalized, the state machine support was included in the core proptest crate that uses "std" feature. After crate split, the "std" feature was missing in the new crate so the code was dead.

The "std" feature is added to proptest-state-machine as a default feature allowing to switch the logging off in non-std env.