Bracoxide is a powerful Rust library for handling and expanding brace expansions. It provides a simple and intuitive way to generate combinations and permutations from brace patterns.
Add Bracoxide to your Cargo.toml:
toml
[dependencies]
bracoxide = "0.1.0"
Import the bracoxide crate and start expanding brace patterns:
```rust use bracoxide::{bracoxidize, OxidizationError};
fn main() { let content = "foo{1..3}bar"; match bracoxidize(content) { Ok(expanded) => { println!("Expanded patterns: {:?}", expanded); } Err(error) => { eprintln!("Error occurred: {:?}", error); } } } ```
For more details and advanced usage, please refer to the API documentation.
Contributions are welcome! If you encounter any issues or have ideas for improvements, please open an issue or submit a pull request. See our contribution guidelines for more information.
This project is licensed under the MIT License - see the LICENSE file for details.