### Rust Development Environment Setup with Nix Source: https://github.com/helsing-ai/dson/blob/main/README.md This snippet shows how to enter a Nix development shell for the DSON project. Nix provides a consistent environment with the correct Rust toolchain and dependencies, simplifying the development setup. ```Nix nix develop ``` -------------------------------- ### Rust Project Build and Test Commands Source: https://github.com/helsing-ai/dson/blob/main/README.md Standard Cargo commands for building and testing the DSON Rust project. These commands are generally expected to work without many external dependencies due to DSON's minimal requirements. ```Rust cargo build ``` ```Rust cargo test ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.