gitv 0.1.0

A git repos analyzing and visualizing tool built in Rust.
<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <title>change-language-2019</title>
    <script src="../assets/chart.min.js"></script>
    <script src="../assets/chartjs-plugin-datalabels.js"></script>
</head>

<body>
    <div><canvas id="change-language-2019" width="680px" height="460px"></canvas></div>
    <script>
        Chart.register(ChartDataLabels)
        const myChart = new Chart(
            document.getElementById('change-language-2019'),
            {"type":"bar","data":{"labels":["py","go","html","js","css"],"datasets":[{"data":[13,9,7,3,2],"label":"count","borderRadius":12,"backgroundColor":["#fbb4ae","#b3cde3","#ccebc5","#decbe4","#fed9a6","#ffffcc","#e5d8bd","#fddaec","#f2f2f2"]}]},"options":{"indexAxis":"y","animation":{"duration":0},"plugins":{"title":{"display":true,"text":"2019 年项目语言分布"}},"responsive":false}}
    );
    </script>
</body>

</html>