Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

For Developers

Install Rust

If you don’t have Rust installed, please see the Rust Installation Instructions.

Compiling

Compile Datui using cargo:

cargo build              # Debug build (fast build, large binary, debugging extras)
cargo build --release    # Optimized release build (slow build, small binary, optimized)
  • The debug build will be available in the target/debug directory
  • The release build will be available in the target/release directory

The release build will take significantly longer to compile than debug. But, the release build is faster and has significantly smaller size.

More Resources