Skip to content

Latest commit

 

History

History
27 lines (17 loc) · 935 Bytes

packaging.md

File metadata and controls

27 lines (17 loc) · 935 Bytes

Packaging

For Rust native code, cargo works great, but we'll need to package stuff from outside of Rust too (e.g. tendermint). The goal is to have a repo that can always build as is (reproducible) and easily portable (having a single command to install all the deps).

Options to consider:

Cargo

For Rust dependencies, it would be nice to integrate and use:

Nix

Purely functional package management for reproducible environment. The big drawback is its language.

Guix

Similar package management capability to nix, but using scheme language.

Docker

Not ideal for development, but we'll probably want to provide docker images for users.