Sandbox for Rust experiments.
- binary_search - Binary search algorithm implementation
- c2f - Temperature converter (Celsius to Fahrenheit)
- md2html - Markdown to HTML converter
- prt_scr - Screenshot utility
- xor_cipher - XOR cipher implementation for text encryption/decryption
- Rust 1.70+ (2021 edition)
# Run c2f project
cd c2f
cargo runRun all tests:
cargo testRun tests with output:
cargo test -- --nocaptureRun specific test:
cargo test test_name# Debug build
cargo build
# Release build (optimized)
cargo build --release# Run c2f project
./target/release/c2f# Format code
cargo fmt
# Lint with Clippy
cargo clippy --all-targets --all-features -- -D warnings