From 32736606fd2317c4b19639ee3b4b8d18dcb8e83e Mon Sep 17 00:00:00 2001 From: Josh Triplett Date: Sun, 31 May 2020 12:39:28 -0700 Subject: [PATCH] RELEASES.md: Expand `cargo tree` note to mention `cargo tree -d` Useful feature that people might not automatically associate with `cargo tree`. --- RELEASES.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/RELEASES.md b/RELEASES.md index 7cba27e134a78..c8f51b7da4732 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -85,6 +85,8 @@ Cargo │ │ │ └── version_check v0.1.5 ... ``` + You can also display dependencies on multiple versions of the same crate with + `cargo tree -d` (short for `cargo tree --duplicates`). Misc ----