trail 0.1.0

Build cross-platform paths at compile time.
Documentation
  • Coverage
  • 100%
    2 out of 2 items documented2 out of 2 items with examples
  • Size
  • Source code size: 23.11 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 1.11 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 9s Average build duration of successful builds.
  • all releases: 9s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • papa-zakari/trail
    1 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • zacharygolba

trail

CircleCI branch AppVeyor branch Crates.io

Build cross-platform paths at compile time.

Installation

First, add trail to the dependencies section of your Cargo.toml:

[dependencies]
trail = "0.1"

Next, add the following snippet to the entry point of your crate (lib.rs or main.rs):

#[macro_use]
extern crate trail;

Usage

You can also use trail! anywhere else an expression is expected. The expanded output is functionally equivelant to calling Path::new with a hard coded literal.

Posix

assert_eq!(trail!("", "hello", "world"), Path::new("/hello/world"));
assert_eq!(trail!("hello", "world"), Path::new("hello/world"));

Windows

assert_eq!(trail!("", "hello", "world"), Path::new("\\hello\\world"));
assert_eq!(trail!("hello", "world"), Path::new("hello\\world"));

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.