rspec icon indicating copy to clipboard operation
rspec copied to clipboard

Remove restrictions

Open fraillt opened this issue 4 years ago • 0 comments

It wasn't possible to write tests for objects that is not Send + Sync before, this PR solves this problem..

  • Removed rayon crate (which require Send + Sync) to be able to remove unnecessary restrictions on environment.
  • Send, Sync, Debug - removed from environment, as this library only needs to be able to clone environment, nothing else matters to it.
  • Also updated to 2018 edition, which affected the way imports are used. This step is required to implement async functionality in the future.

fraillt avatar Dec 17 '21 08:12 fraillt