forked from starfederation/datastar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
83 lines (80 loc) · 3.27 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
module github.com/starfederation/datastar
go 1.23.3
require (
github.com/CAFxX/httpcompression v0.0.9
github.com/Jeffail/gabs/v2 v2.7.0
github.com/TwiN/go-away v1.6.14
github.com/a-h/templ v0.2.793
github.com/alecthomas/chroma v0.10.0
github.com/benbjohnson/hashfs v0.2.2
github.com/delaneyj/gostar v0.8.0
github.com/delaneyj/toolbelt v0.3.10
github.com/drhodes/golorem v0.0.0-20220328165741-da82e5b29246
github.com/dustin/go-humanize v1.0.1
github.com/evanw/esbuild v0.24.0
github.com/go-chi/chi/v5 v5.1.0
github.com/go-faker/faker/v4 v4.5.0
github.com/go-sanitize/sanitize v1.1.0
github.com/goccy/go-json v0.10.3
github.com/gomarkdown/markdown v0.0.0-20241105142532-d03b89096d81
github.com/gorilla/csrf v1.7.2
github.com/gorilla/sessions v1.4.0
github.com/hashicorp/golang-lru/v2 v2.0.7
github.com/joho/godotenv v1.5.1
github.com/klauspost/compress v1.17.11
github.com/lithammer/fuzzysearch v1.1.8
github.com/nats-io/nats.go v1.37.0
github.com/playwright-community/playwright-go v0.4802.0
github.com/samber/lo v1.47.0
github.com/segmentio/encoding v0.4.0
github.com/valyala/bytebufferpool v1.0.0
github.com/valyala/quicktemplate v1.8.0
github.com/wcharczuk/go-chart/v2 v2.1.2
github.com/zeebo/xxh3 v1.0.2
)
require (
github.com/andybalholm/brotli v1.1.1 // indirect
github.com/cenkalti/backoff v2.2.1+incompatible // indirect
github.com/chewxy/math32 v1.11.1 // indirect
github.com/deckarep/golang-set/v2 v2.6.0 // indirect
github.com/denisbrodbeck/machineid v1.0.1 // indirect
github.com/dlclark/regexp2 v1.11.4 // indirect
github.com/go-jose/go-jose/v3 v3.0.3 // indirect
github.com/go-rod/rod v0.116.2 // indirect
github.com/go-stack/stack v1.8.1 // indirect
github.com/golang/freetype v0.0.0-20170609003504-e2365dfdc4a0 // 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/cpuid/v2 v2.2.9 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/minio/highwayhash v1.0.3 // indirect
github.com/nats-io/jwt/v2 v2.7.2 // indirect
github.com/nats-io/nats-server/v2 v2.10.22 // indirect
github.com/nats-io/nkeys v0.4.7 // indirect
github.com/nats-io/nuid v1.0.1 // 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/segmentio/asm v1.2.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
golang.org/x/crypto v0.29.0 // indirect
golang.org/x/exp v0.0.0-20241108190413-2d47ceb2692f // indirect
golang.org/x/image v0.22.0 // indirect
golang.org/x/sync v0.9.0 // indirect
golang.org/x/sys v0.27.0 // indirect
golang.org/x/text v0.20.0 // indirect
golang.org/x/time v0.8.0 // indirect
google.golang.org/protobuf v1.35.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.34.1 // indirect
zombiezen.com/go/sqlite v1.4.0 // indirect
)