Embed tendermint into rust to use tendermint as a crate.
Add this line into Cargo.toml
:
toml
embedded-td = "0.1"
Default tendermint version is 0.34
.
You can use feature to use different tendermint version.
toml
embedded-td = { version = "0.1", features = ["td_ver_0_34"] }
By deafult, this crate use precompile version on github.
If you want to build from source, use use_source_code
:
toml
embedded-td = { version = "0.1", features = ["use_source_code"] }
This feature can work with version.
toml
embedded-td = { version = "0.1", features = ["use_source_code", "td_ver_0_34"] }
Note: Build from source need go
installed.
Building from source can also use non-goleveldb backends: ```toml
libleveldb
.embedded-td = { version = "0.1", features = ["usesourcecode", "backend_cleveldb"] }
librocksdb
.embedded-td = { version = "0.1", features = ["usesourcecode", "backend_rocksdb"] } ```
If you fork tendermint, use environment EMBEDDED_TD_UPSTREAM_URL
as custom upstream's url.
For example:
```shell
EMBEDDEDTDUPSTREAM_URL = "http://example.com/tendermint" ```
You can use these features:
td_ver_0_34
(default) tendermint 0.34td_ver_0_37
tendermint 0.37smol-backend
(default).tokio-backend
use_source_code
1 ~ 8 can work with precompile binary. Beacuse origin tendermin repo only provide these release. If you want to running on other platform, please configure go cross compile.