Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions crates/pm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@ categories = ["command-line-utilities", "development-tools"]

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[lib]
name = "utoo_pm"
path = "src/lib.rs"

[[bin]]
name = "utoo"
path = "src/main.rs"
Expand Down
6 changes: 3 additions & 3 deletions crates/pm/src/cli.rs
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
//! Clap CLI definitions for the `utoo` binary.
//!
//! Pure argument-parsing types and helpers live here; per-command assembly
//! and execution belong to the owning `cmd::*` module.
//! and execution belong to the owning `commands::*` module.

use clap::{Parser, Subcommand};

use crate::cmd::install::InstallArgs;
use crate::cmd::update::UpdateArgs;
use crate::commands::install::InstallArgs;
use crate::commands::update::UpdateArgs;
use crate::constants::cmd::{
CLEAN_ABOUT, CLEAN_ALIAS, CLEAN_NAME, COMPLETIONS_ABOUT, COMPLETIONS_ALIAS,
COMPLETIONS_LONG_ABOUT, COMPLETIONS_NAME, CONFIG_ABOUT, CONFIG_ALIAS, CONFIG_NAME, DEPS_ABOUT,
Expand Down
Loading
Loading