cargo_like_utils/
lib.rs

1// Most of the code in this crate has been lifted from `cargo`'s modules in order
2// to match the behaviour and output style of `cargo` as closely as possible.
3//
4// Permission is hereby granted, free of charge, to any
5// person obtaining a copy of this software and associated
6// documentation files (the "Software"), to deal in the
7// Software without restriction, including without
8// limitation the rights to use, copy, modify, merge,
9// publish, distribute, sublicense, and/or sell copies of
10// the Software, and to permit persons to whom the Software
11// is furnished to do so, subject to the following
12// conditions:
13//
14// The above copyright notice and this permission notice
15// shall be included in all copies or substantial portions
16// of the Software.
17//
18// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
19// ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
20// TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
21// PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
22// SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
23// CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
24// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
25// IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
26// DEALINGS IN THE SOFTWARE.
27pub mod shell;
28pub mod flock;