Metadata-Version: 2.1
Name: clvm_rs
Version: 0.1.14
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/

Rust implementation of clvm.

Python Wheel
------------

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

```
$ pip install maturin
```

Build `clvm_rs` directly into the current virtualenv with

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

To build the wheel, do

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


WASM
----

Use `wasm-pack` to build the wasm `pkg` file used with npm. Install it with:

```
$ cargo install wasm-pack
```

Then build with

```
$ wasm-pack build  --release
```


TESTS
-----
In order to run the unit tests, run:

```
cargo test
```

