pub fn compute_signature(packages: &[PackageItem]) -> Vec<String>Expand description
What: Generate a deterministic signature for service cache comparisons.
Inputs:
packages: Slice of install list entries contributing their package names.
Output:
- Sorted vector of package names that can be compared for cache validity checks.
Details:
- Delegates to [
cache_common::compute_signature], which sorts the cloned package names alphabetically to create an order-agnostic key.