rsbuild-0.2.1 is not a library.
rsbuild
A self-sufficient runtime to build projects.
Installation
From crates.io
From source
Usage
Commands
| Command | Description |
|---|---|
build |
Build artifacts (wheel, docker, cargo) |
pull |
Pull docker images |
clean |
Clean build artifacts |
cython |
Compile Cython modules |
glances |
Run glances system monitor |
help |
Print help information |
Build Subcommands
# Build Python wheel
# Build all targets (wheel, vanilla, sandbox)
# Build Docker containers
# Build Rust binary
Pull Subcommands
# Pull all images
# Pull specific images
Clean
# Remove build artifacts, egg-info, pycache, and notebook checkpoints
Cython
# Compile Cython modules for a package
Project Structure
src/
├── main.rs # Entry point
├── cli.rs # CLI argument definitions (clap)
├── error.rs # Error types (thiserror)
├── executor.rs # Command execution utilities
└── commands/
├── mod.rs # Module exports
├── build.rs # Build commands
├── clean.rs # Clean command
├── cython.rs # Cython compilation
└── pull.rs # Docker pull commands
License
MIT