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
// Platform abstraction layer for cargo-detect-package.
//
// This module provides abstractions over filesystem operations to enable mocking in tests.
// The pattern follows the three-layer approach: abstraction (trait) → facade (enum) → real
// implementation, mirroring the PAL structure used in `many_cpus`.

mod filesystem;

pub(crate) use filesystem::*;