We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 488713c commit 642453aCopy full SHA for 642453a
src/bin/cargo/commands/git_checkout.rs
@@ -1,3 +1,5 @@
1
+//! Removed.
2
+
3
use crate::command_prelude::*;
4
5
const REMOVED: &str = "The `git-checkout` command has been removed.";
src/bin/cargo/commands/read_manifest.rs
@@ -1,7 +1,10 @@
+//! Deprecated.
pub fn cli() -> Command {
6
subcommand("read-manifest")
7
+ .hide(true)
8
.about(color_print::cstr!(
9
"\
10
Print a JSON representation of a Cargo.toml manifest.
src/bin/cargo/commands/verify_project.rs
@@ -1,10 +1,13 @@
use std::collections::HashMap;
use std::process;
subcommand("verify-project")
11
.about(
12
13
Check correctness of crate manifest.
0 commit comments