slash_formatter/lib.rs
1/*!
2# Slash Formatter
3
4This crate provides functions to deal with slashes and backslashes in strings.
5
6## Examples
7
8To see examples, check out the documentation for each function.
9*/
10
11#![no_std]
12
13#[macro_use]
14extern crate alloc;
15
16mod backslash;
17mod file_separator;
18mod file_separator_build;
19mod slash;
20
21pub use backslash::*;
22#[doc(hidden)]
23pub use concat_with::{concat, concat_impl};
24pub use file_separator::*;
25pub use file_separator_build::*;
26pub use slash::*;