KO
|
EN
gitlite — search
Search
#dsh-plugin
#typescript
#ai-agents
#deepseek-harness
#python
#java
#cli
#ai
#dsh
#open-source
#windows
#game
clvm_rs
★ 74
Open GitHub ↗
Rust implementation of clvm
Download README (.md)
Explore Similar Repositories
chia-log-analyzer
:
Simply realtime chia log analyzer for chia coin (XCH) farmers
chiavdf
:
Chia VDF utilities
chia_crypto_utils
:
Cryptographic utilities in Dart for the Chia blockchain with a functional object model for manipulating Chia primitive types.
chialisp-web
:
A docusaurus Chialisp website
sage
:
The sagest wallet for the Chia blockchain.
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
clvm_rs
?
Download (.md)
Rust implementation of clvm.  [](https://coveralls.io/github/Chia-Network/clvm_rs?branch=main)    [](https://crates.io/crates/clvmr) The cargo workspace includes an rlib crate, for use with rust or other applications, and a python wheel. The python wheel is in `wheel`. The npm package is in `wasm`. ## Tests In order to run the unit tests, run: ``` cargo test ``` ## Fuzzing The fuzzing infrastructure for `clvm_rs` uses [cargo-fuzz](https://github.com/rust-fuzz/cargo-fuzz). Documentation for setting up fuzzing in rust can be found [here](https://rust-fuzz.github.io/book/cargo-fuzz.html). To get started, run: ``` cargo fuzz run run-program --jobs=32 -- -rss_limit_mb=4096 ``` But with whatever number of jobs works best for you. If you find issues in `clvm_rs` please use our [bug bounty program](https://hackerone.com/chia_network). ## Build Wheel The `clvm_rs` wheel has python bindings for the rust implementation of clvm. 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 --features=openssl ``` To build the wheel, do ``` $ maturin build --release ``` or ``` $ maturin build --release --features=openssl ``` ## Bumping Version Number Make sure you have `cargo-workspaces` installed: ```bash cargo install cargo-workspaces ``` To bump the versions of all relevant crates: ```bash cargo ws version --force "**" --all --no-git-commit ``` Select "minor update" if there has not been any incompatible API changes, otherwise "major update".