-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathgo.mod
More file actions
48 lines (41 loc) · 1.19 KB
/
go.mod
File metadata and controls
48 lines (41 loc) · 1.19 KB
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
module github.com/emad-elsaid/xlog
go 1.24.0
require (
github.com/alecthomas/chroma/v2 v2.13.0
github.com/gorilla/csrf v1.7.3
)
require (
github.com/rwcarlsen/goexif v0.0.0-20190401172101-9e8deecbddbd
golang.org/x/image v0.18.0
)
require (
github.com/emad-elsaid/memoize v0.0.0-20241119212339-a0b57858a452
github.com/emad-elsaid/types v0.0.4
github.com/gorilla/websocket v1.5.1
github.com/hashicorp/golang-lru/v2 v2.0.7
github.com/rjeczalik/notify v0.9.3
github.com/stretchr/testify v1.10.0
gitlab.com/greyxor/slogor v1.5.2
golang.org/x/sync v0.6.0
gopkg.in/yaml.v3 v3.0.1
pgregory.net/rapid v1.2.0
)
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
golang.org/x/net v0.47.0 // indirect
gopkg.in/yaml.v2 v2.3.0
)
require (
github.com/ProtonMail/go-crypto v1.0.0 // indirect
github.com/cloudflare/circl v1.6.1 // indirect
github.com/google/go-github/v53 v53.2.0
github.com/google/go-querystring v1.1.0 // indirect
golang.org/x/crypto v0.45.0 // indirect
golang.org/x/oauth2 v0.27.0
golang.org/x/sys v0.38.0 // indirect
)
require (
github.com/dlclark/regexp2 v1.11.0 // indirect
github.com/gorilla/securecookie v1.1.2 // indirect
)