diff options
| author | Martin Kagamino Lehoux <martin@lehoux.net> | 2024-07-28 15:52:12 +0200 |
|---|---|---|
| committer | Martin Kagamino Lehoux <martin@lehoux.net> | 2024-07-28 15:52:12 +0200 |
| commit | 20043af3c289052e239773257cbbd961e4397394 (patch) | |
| tree | 2f39f251961bbbebf0a86ef0481759e0401be436 /go.mod | |
| parent | 45844ae231b7afe68a1cd5b7c0d09fd77e806d0f (diff) | |
perf: Precompute distance
Diffstat (limited to 'go.mod')
| -rw-r--r-- | go.mod | 16 |
1 files changed, 13 insertions, 3 deletions
@@ -1,14 +1,24 @@ module github.com/martinlehoux/biking_home -go 1.21.12 +go 1.22 require ( + github.com/go-echarts/go-echarts/v2 v2.4.1 + github.com/martinlehoux/kagamigo v0.4.0 github.com/olekukonko/tablewriter v0.0.5 github.com/tkrajina/gpxgo v1.4.0 ) require ( + github.com/BurntSushi/toml v1.4.0 // indirect + github.com/a-h/templ v0.2.707 // indirect + github.com/gofrs/uuid v4.4.0+incompatible // indirect + github.com/kataras/i18n v0.0.8 // indirect + github.com/kr/text v0.2.0 // indirect github.com/mattn/go-runewidth v0.0.9 // indirect - golang.org/x/net v0.0.0-20210614182718-04defd469f4e // indirect - golang.org/x/text v0.3.6 // indirect + golang.org/x/exp v0.0.0-20240604190554-fc45aab8b7f8 // indirect + golang.org/x/net v0.26.0 // indirect + golang.org/x/text v0.16.0 // indirect + gopkg.in/ini.v1 v1.67.0 // indirect + gopkg.in/yaml.v3 v3.0.1 // indirect ) |