changelog shortlog graph tags branches changeset files revisions annotate raw help

Mercurial > core / rust/lib/util/src/lib.rs

changeset 698: 96958d3eb5b0
parent: 966f92770ddf
author: Richard Westhaver <ellis@rwest.io>
date: Fri, 04 Oct 2024 22:04:59 -0400
permissions: -rw-r--r--
description: fixes
1 //! util library
2 #[cfg(feature = "anyhow")]
3 pub use anyhow::{Context, Result};
4 #[cfg(feature = "bs")]
5 pub mod bs;
6 #[cfg(feature = "cli")]
7 pub mod cli;
8 #[cfg(feature = "fmt")]
9 pub mod fmt;
10 pub mod path;
11 #[cfg(test)]
12 mod tests;
13 #[cfg(feature = "time")]
14 pub mod time;
15 #[cfg(feature = "url")]
16 pub use url::Url;