# Ruvector - Environment Configuration Example # Copy this file to .env and update with your actual values # NEVER commit .env to version control! # ============================================ # Crates.io Publishing # ============================================ # Get your API token from: https://crates.io/me # Required for publishing crates to crates.io CRATES_API_KEY=your-crates-io-api-token-here # ============================================ # Development & Testing # ============================================ # Log level (trace, debug, info, warn, error) RUST_LOG=info # Enable backtrace on panic RUST_BACKTRACE=1 # ============================================ # Optional: Build Configuration # ============================================ # Number of parallel jobs for compilation # CARGO_BUILD_JOBS=4 # Target directory for build artifacts # CARGO_TARGET_DIR=target # ============================================ # Optional: Benchmark Configuration # ============================================ # Number of iterations for benchmarks # BENCHMARK_ITERATIONS=100 # Dataset size for performance tests # BENCHMARK_DATASET_SIZE=1000000