Metadata-Version: 2.1
Name: clvm_rs
Version: 0.1.21
Summary: Implementation of `clvm` for Chia Network's cryptocurrency
Home-Page: https://github.com/Chia-Network/clvm_rs/
Author: Richard Kiss <him@richardkiss.com>
Author-email: Richard Kiss <him@richardkiss.com>
License: Apache-2.0
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
Project-URL: Source Code, https://github.com/Chia-Network/clvm_rs/

The `clvm_rs` wheel has python bindings for the rust implementation of clvm.

Build
-----

Use `maturin` to build the python interface. First, install into current virtualenv with

```
$ pip install maturin
```

While in the `wheel` directory, build `clvm_rs` into the current virtualenv with

```
$ maturin develop --release
```

On UNIX-based platforms, you may get a speed boost on `sha256` operations by building
with OpenSSL.

```
$ maturin develop --release --cargo-extra-args="--features=openssl"
```


To build the wheel, do

```
$ maturin build --release --no-sdist
````

or

```
$ maturin build --release --no-sdist --cargo-extra-args="--features=openssl"
```

