(reader: &mut R)
| 316 | |
| 317 | #[cfg(feature = "std")] |
| 318 | fn read_json_config<R: std::io::Read>(reader: &mut R) -> Result<ProjectConfig> { |
| 319 | Ok(serde_json::from_reader(reader)?) |
| 320 | } |
| 321 | |
| 322 | pub fn build_globset(vec: &[Glob]) -> Result<GlobSet, globset::Error> { |
| 323 | let mut builder = GlobSetBuilder::new(); |
no outgoing calls
no test coverage detected