indicate 0.2.1

Library behind cargo-indicate
Documentation
FullQuery(
    query: r#"
{
    RootPackage {
        geiger {
            forbidsUnsafe @output
            used {
                exprs {
                    safe @output(name: "safeExprs")
                    unsafe @output(name: "unsafeExprs")
                    total @output(name: "totalExprs")
                    percentageUnsafe @output(name: "exprsPercentageUnsafe")
                }
            }
        }
        dependencies {
            geiger {
                used {
                    functions {
                        safe @output(name: "depUsedSafeFunctions")
                        unsafe @output(name: "depUsedUnsafeFunctions")
                        total @output(name: "depUsedTotalFunctions")
                        percentageUnsafe @output(name: "depUsedFunctionPercentageUnsafe")
                    }
                }
                unused {
                    total {
                        percentageUnsafe @output(name: "depUnusedTotalPercentageUnsafe")
                    }
                }
                total {
                    total {
                        percentageUnsafe @output(name: "depTotalPercentageUnsafe")
                    }
                }
            }
        }
    }
}
    "#,
    args: {}
)