cargo-detect-package 1.0.16

A Cargo tool to detect the package that a file belongs to, passing the package name to a subcommand
Documentation
1
2
3
4
5
6
7
8
9
10
11
// Filesystem abstraction for cargo-detect-package.
//
// Provides a mockable interface over filesystem operations used by the package detection logic.

mod abstractions;
mod facade;
mod real;

pub(crate) use abstractions::*;
pub(crate) use facade::*;
pub(crate) use real::*;