all repos — go-lift @ 2e1c54060dc6096e5772a13f5248451e86b03f6d

Lightweight workout tracker prototype..

go.mod (view raw)

 1module github.com/birabittoh/go-lift
 2
 3go 1.24
 4
 5require (
 6	github.com/BurntSushi/toml v1.4.0
 7	github.com/glebarez/sqlite v1.11.0
 8	github.com/joho/godotenv v1.5.1
 9	github.com/nicksnyder/go-i18n/v2 v2.5.1
10	golang.org/x/text v0.23.0
11	gorm.io/gorm v1.25.12
12)
13
14require (
15	github.com/a-h/parse v0.0.0-20250122154542-74294addb73e // indirect
16	github.com/a-h/templ v0.3.857 // indirect
17	github.com/andybalholm/brotli v1.1.0 // indirect
18	github.com/cenkalti/backoff/v4 v4.3.0 // indirect
19	github.com/cli/browser v1.3.0 // indirect
20	github.com/dustin/go-humanize v1.0.1 // indirect
21	github.com/fatih/color v1.16.0 // indirect
22	github.com/fsnotify/fsnotify v1.7.0 // indirect
23	github.com/glebarez/go-sqlite v1.21.2 // indirect
24	github.com/google/uuid v1.3.0 // indirect
25	github.com/jinzhu/inflection v1.0.0 // indirect
26	github.com/jinzhu/now v1.1.5 // indirect
27	github.com/mattn/go-colorable v0.1.13 // indirect
28	github.com/mattn/go-isatty v0.0.20 // indirect
29	github.com/natefinch/atomic v1.0.1 // indirect
30	github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec // indirect
31	golang.org/x/mod v0.20.0 // indirect
32	golang.org/x/net v0.37.0 // indirect
33	golang.org/x/sync v0.12.0 // indirect
34	golang.org/x/sys v0.31.0 // indirect
35	golang.org/x/tools v0.24.0 // indirect
36	gopkg.in/yaml.v3 v3.0.1 // indirect
37	modernc.org/libc v1.22.5 // indirect
38	modernc.org/mathutil v1.5.0 // indirect
39	modernc.org/memory v1.5.0 // indirect
40	modernc.org/sqlite v1.23.1 // indirect
41)
42
43tool (
44	github.com/a-h/templ/cmd/templ
45	github.com/nicksnyder/go-i18n/v2/goi18n
46)