halo2/README.md

40 lines
1.2 KiB
Markdown
Raw Permalink Normal View History

# halo2
2020-08-22 13:15:39 -07:00
## Usage
This repository contains the [halo2_proofs](halo2_proofs/README.md) and
[halo2_gadgets](halo2_gadgets/README.md) crates, which should be used directly.
2020-08-22 13:15:39 -07:00
2021-06-01 16:01:04 -07:00
## Minimum Supported Rust Version
Requires Rust **1.60** or higher.
2021-06-01 16:01:04 -07:00
Minimum supported Rust version can be changed in the future, but it will be done with a
minor version bump.
## Controlling parallelism
`halo2` currently uses [rayon](https://github.com/rayon-rs/rayon) for parallel computation.
The `RAYON_NUM_THREADS` environment variable can be used to set the number of threads.
You can disable `rayon` by disabling the `"multicore"` feature.
Warning! Halo2 will lose access to parallelism if you disable the `"multicore"` feature.
This will significantly degrade performance.
2020-08-22 13:15:39 -07:00
## License
Licensed under either of
2020-08-22 13:15:39 -07:00
* Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or
http://www.apache.org/licenses/LICENSE-2.0)
* MIT license ([LICENSE-MIT](LICENSE-MIT) or http://opensource.org/licenses/MIT)
2020-08-22 13:15:39 -07:00
at your option.
### Contribution
Unless you explicitly state otherwise, any contribution intentionally
submitted for inclusion in the work by you, as defined in the Apache-2.0
license, shall be dual licensed as above, without any additional terms or
conditions.