-
Notifications
You must be signed in to change notification settings - Fork 3
/
go.mod
55 lines (52 loc) · 2.11 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
55
module github.com/delaneyj/realworld-datastar
go 1.23.1
require (
github.com/a-h/templ v0.2.778
github.com/delaneyj/datastar v0.18.9
github.com/delaneyj/toolbelt v0.3.1
github.com/dustin/go-humanize v1.0.1
github.com/go-chi/chi/v5 v5.1.0
github.com/gorilla/sessions v1.4.0
github.com/jaswdr/faker/v2 v2.3.0
golang.org/x/crypto v0.27.0
zombiezen.com/go/sqlite v1.4.0
)
require (
github.com/CAFxX/httpcompression v0.0.9 // indirect
github.com/andybalholm/brotli v1.1.0 // indirect
github.com/cenkalti/backoff v2.2.1+incompatible // indirect
github.com/chewxy/math32 v1.11.1 // indirect
github.com/delaneyj/gostar v0.7.3 // indirect
github.com/denisbrodbeck/machineid v1.0.1 // indirect
github.com/go-rod/rod v0.116.2 // indirect
github.com/go-sanitize/sanitize v1.1.0 // indirect
github.com/goccy/go-json v0.10.3 // indirect
github.com/google/uuid v1.6.0 // indirect
github.com/gorilla/securecookie v1.1.2 // indirect
github.com/iancoleman/strcase v0.3.0 // indirect
github.com/igrmk/treemap/v2 v2.0.1 // indirect
github.com/klauspost/compress v1.17.10 // indirect
github.com/klauspost/cpuid/v2 v2.2.8 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/ncruces/go-strftime v0.1.9 // indirect
github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec // indirect
github.com/rzajac/clock v0.2.0 // indirect
github.com/rzajac/zflake v0.8.0 // indirect
github.com/samber/lo v1.47.0 // indirect
github.com/valyala/bytebufferpool v1.0.0 // indirect
github.com/ysmood/fetchup v0.2.4 // indirect
github.com/ysmood/goob v0.4.0 // indirect
github.com/ysmood/got v0.40.0 // indirect
github.com/ysmood/gson v0.7.3 // indirect
github.com/ysmood/leakless v0.9.0 // indirect
github.com/zeebo/xxh3 v1.0.2 // indirect
golang.org/x/exp v0.0.0-20240909161429-701f63a606c0 // indirect
golang.org/x/sync v0.8.0 // indirect
golang.org/x/sys v0.26.0 // indirect
golang.org/x/text v0.19.0 // indirect
google.golang.org/protobuf v1.34.2 // indirect
modernc.org/libc v1.61.0 // indirect
modernc.org/mathutil v1.6.0 // indirect
modernc.org/memory v1.8.0 // indirect
modernc.org/sqlite v1.33.1 // indirect
)