cargo-grip4rust 0.7.0

A cargo subcommand for measuring Rust testability
Documentation
// Copyright 2026 Umberto Gotti <umberto.gotti@umbertogotti.dev>
// Licensed under the MIT License
// SPDX-License-Identifier: MIT

use serde::{Deserialize, Serialize};

#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct FunctionInfo {
    pub name: String,
    pub file: String,
    pub is_pure: bool,
    pub is_public: bool,
    pub hidden_deps: usize,
    pub has_trait_seam: bool,
    pub dep_weight: f64,
    pub hidden_dep_labels: Vec<String>,
    pub grip_absolute: f64,
    pub grip_normalized: u32,
}