cargo-ddd 0.2.2

A cargo subcommand for inspecting what changes brings dependency version update into your project
1
2
3
4
5
6
7
8
9
use indexmap::IndexMap;

use crate::dependency_diff::DependencyDiff;

/// Diff report for all requested crates
pub struct DiffReport {
    /// Dependency diffs per workspace target
    pub dependency_diffs: IndexMap<String, Vec<DependencyDiff>>,
}