forked from starfederation/datastar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo.mod
87 lines (84 loc) · 3.48 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
84
85
86
87
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.3.819
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.16
github.com/drhodes/golorem v0.0.0-20220328165741-da82e5b29246
github.com/dustin/go-humanize v1.0.1
github.com/evanw/esbuild v0.24.2
github.com/go-chi/chi/v5 v5.2.0
github.com/go-faker/faker/v4 v4.5.0
github.com/go-rod/rod v0.116.2
github.com/go-sanitize/sanitize v1.1.0
github.com/goccy/go-json v0.10.4
github.com/gomarkdown/markdown v0.0.0-20241205020045-f7e15b2f3e62
github.com/gorilla/csrf v1.7.2
github.com/gorilla/sessions v1.4.0
github.com/grafana/regexp v0.0.0-20240518133315-a468a5bfb3bc
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-server/v2 v2.10.24
github.com/nats-io/nats.go v1.38.0
github.com/samber/lo v1.47.0
github.com/segmentio/encoding v0.4.1
github.com/stretchr/testify v1.10.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/ysmood/gson v0.7.3
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/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
github.com/denisbrodbeck/machineid v1.0.1 // indirect
github.com/dlclark/regexp2 v1.11.4 // 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/kr/pretty v0.3.1 // 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.3 // indirect
github.com/nats-io/nkeys v0.4.9 // indirect
github.com/nats-io/nuid v1.0.1 // indirect
github.com/ncruces/go-strftime v0.1.9 // indirect
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec // indirect
github.com/rogpeppe/go-internal v1.11.0 // 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/leakless v0.9.0 // indirect
golang.org/x/crypto v0.32.0 // indirect
golang.org/x/exp v0.0.0-20250106191152-7588d65b2ba8 // indirect
golang.org/x/image v0.23.0 // indirect
golang.org/x/sync v0.10.0 // indirect
golang.org/x/sys v0.29.0 // indirect
golang.org/x/text v0.21.0 // indirect
golang.org/x/time v0.9.0 // indirect
google.golang.org/protobuf v1.36.2 // indirect
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
modernc.org/libc v1.61.7 // indirect
modernc.org/mathutil v1.7.1 // indirect
modernc.org/memory v1.8.1 // indirect
modernc.org/sqlite v1.34.4 // indirect
zombiezen.com/go/sqlite v1.4.0 // indirect
)