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>commit-count-per-year</title>
    <script src="../assets/chart.min.js"></script>
    <script src="../assets/chartjs-plugin-datalabels.js"></script>
</head>

<body>
    <div><canvas id="commit-count-per-year" width="680px" height="460px"></canvas></div>
    <script>
        Chart.register(ChartDataLabels)
        const myChart = new Chart(
            document.getElementById('commit-count-per-year'),
            {"type":"bar","data":{"labels":[2017,2018,2019,2020,2021],"datasets":[{"data":[2.095890410958904,1.3726027397260274,1.6493150684931508,0.7232876712328767,0.4767123287671233],"label":"commit count","backgroundColor":["#b3e2cd","#fdcdac","#cbd5e8","#f4cae4","#e6f5c9","#fff2ae","#f1e2cc","#cccccc"]}]},"options":{"animation":{"duration":0},"plugins":{"title":{"display":true,"text":"每年每天平均提交数量"},"datalabels":{"formatter": function (value,context){return Math.round(value*100)/100} ,"labels":null}},"responsive":false}}
    );
    </script>
</body>

</html>