mirror of
https://github.com/sstent/garminsync-go.git
synced 2025-12-06 08:01:52 +00:00
31 lines
1.0 KiB
Modula-2
31 lines
1.0 KiB
Modula-2
// go.mod - Keep dependencies minimal
|
|
module garminsync
|
|
|
|
go 1.21
|
|
|
|
require (
|
|
github.com/gorilla/mux v1.8.0 // For HTTP routing
|
|
github.com/mattn/go-sqlite3 v1.14.17
|
|
github.com/robfig/cron/v3 v3.0.1
|
|
golang.org/x/net v0.12.0 // For HTTP client
|
|
)
|
|
|
|
require (
|
|
github.com/BurntSushi/toml v1.2.1 // indirect
|
|
github.com/client9/misspell v0.3.4 // indirect
|
|
github.com/google/go-cmp v0.5.8 // indirect
|
|
github.com/gordonklaus/ineffassign v0.0.0-20210914165742-4cc7213b9bc8 // indirect
|
|
github.com/joho/godotenv v1.5.1 // indirect
|
|
github.com/kisielk/errcheck v1.6.1 // indirect
|
|
github.com/mdempsky/unconvert v0.0.0-20230125054757-2661c2c99a9b // indirect
|
|
github.com/tormoder/fit v0.15.0 // indirect
|
|
golang.org/x/exp/typeparams v0.0.0-20221208152030-732eee02a75a // indirect
|
|
golang.org/x/mod v0.8.0 // indirect
|
|
golang.org/x/sync v0.1.0 // indirect
|
|
golang.org/x/sys v0.10.0 // indirect
|
|
golang.org/x/text v0.11.0 // indirect
|
|
golang.org/x/tools v0.6.0 // indirect
|
|
honnef.co/go/tools v0.4.2 // indirect
|
|
mvdan.cc/gofumpt v0.4.0 // indirect
|
|
)
|