Skip to content

Guide to Development

Niko Matsakis edited this page Nov 17, 2016 · 5 revisions

There are a few things to know about developing Rayon:

  • You can only run tests (and use the demo) using the Nightly compiler.
  • In general, during development, you want to use --features unstable:
    • cargo build --features unstable
    • cargo test --features unstable
  • If you do not, you will see various warnings about dead code and the like.
  • To run benchmarks, go to rayon-demo and do cargo bench.
  • In general, benchmarks go in rayon-demo.
Clone this wiki locally