A collection of handy utility functions for Rust projects.
This repository serves as a library of reusable code snippets for Rust projects.
Recommended usage: Instead of adding this project as a direct dependency, it is advised to copy the specific utility functions you need into your own project. This approach helps keep your dependencies minimal and gives you full control over the code.
If you prefer to use this project as a direct dependency, you can add it to your Cargo.toml
:
cargo add sniplets
All modules that require any external dependencies are behind feature flags.
Contains utility functions for working with file paths.
Provides utility functions for working with XML files using the quick-xml
crate.
- Feature flag:
quick_xml
- Dependencies:
quick-xml
serde