-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgo.mod
54 lines (51 loc) · 1.99 KB
/
go.mod
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
module github.com/cloudcopper/swamp
go 1.23.4
require (
github.com/cloudcopper/misc v0.1.0
github.com/cskr/pubsub/v2 v2.0.2
github.com/dustin/go-humanize v1.0.1
github.com/fsnotify/fsnotify v1.7.1-0.20240516151259-c1467c02fba5
github.com/go-chi/chi/v5 v5.1.0
github.com/go-loremipsum/loremipsum v1.1.3
github.com/go-playground/validator/v10 v10.22.1
github.com/google/uuid v1.6.0
github.com/oklog/ulid/v2 v2.1.0
github.com/orandin/slog-gorm v1.4.0
github.com/phsym/console-slog v0.3.1
github.com/samber/slog-chi v1.11.1
github.com/spf13/afero v1.11.0
github.com/stretchr/testify v1.9.0
github.com/unrolled/render v1.7.0
golang.org/x/exp v0.0.0-20250128182459-e0ece0dbea4c
gopkg.in/yaml.v3 v3.0.1
gorm.io/driver/sqlite v1.5.6
gorm.io/gorm v1.25.12
modernc.org/sqlite v1.33.0
)
require (
github.com/cloudcopper/random v0.3.0 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/gabriel-vasile/mimetype v1.4.5 // indirect
github.com/go-playground/locales v0.14.1 // indirect
github.com/go-playground/universal-translator v0.18.1 // indirect
github.com/hashicorp/golang-lru/v2 v2.0.7 // indirect
github.com/jinzhu/inflection v1.0.0 // indirect
github.com/jinzhu/now v1.1.5 // indirect
github.com/leodido/go-urn v1.4.0 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/mattn/go-sqlite3 v1.14.22 // indirect
github.com/ncruces/go-strftime v0.1.9 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec // indirect
go.opentelemetry.io/otel v1.19.0 // indirect
go.opentelemetry.io/otel/trace v1.19.0 // indirect
golang.org/x/crypto v0.31.0 // indirect
golang.org/x/net v0.29.0 // indirect
golang.org/x/sys v0.28.0 // indirect
golang.org/x/text v0.21.0 // indirect
modernc.org/gc/v3 v3.0.0-20240107210532-573471604cb6 // indirect
modernc.org/mathutil v1.6.0 // indirect
modernc.org/memory v1.8.0 // indirect
modernc.org/strutil v1.2.0 // indirect
modernc.org/token v1.1.0 // indirect
)