hakari/cli_ops/
mod.rs

1// Copyright (c) The cargo-guppy Contributors
2// SPDX-License-Identifier: MIT OR Apache-2.0
3
4//! Command-line operations for `hakari`.
5//!
6//! These are primarily intended for use with `cargo hakari`, but may be used by other command-line
7//! frontends.
8//!
9//! Requires the `cli-support` feature to be enabled.
10
11mod initialize;
12mod manage_deps;
13mod workspace_ops;
14
15pub use initialize::*;
16pub use workspace_ops::*;