-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathgo.mod
55 lines (48 loc) · 1.54 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/emad-elsaid/xlog
go 1.24
require (
github.com/alecthomas/chroma/v2 v2.13.0
github.com/gorilla/csrf v1.7.2
github.com/yuin/goldmark v1.7.8
github.com/yuin/goldmark-highlighting/v2 v2.0.0-20230729083705-37449abec8cc
)
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
github.com/yuin/goldmark-meta v1.1.0
gitlab.com/greyxor/slogor v1.5.2
golang.org/x/sync v0.6.0
gopkg.in/yaml.v3 v3.0.1
)
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
go.abhg.dev/goldmark/toc v0.10.0 // indirect
golang.org/x/net v0.33.0 // indirect
gopkg.in/yaml.v2 v2.3.0 // indirect
)
require (
github.com/ProtonMail/go-crypto v1.0.0 // indirect
github.com/cloudflare/circl v1.3.7 // indirect
github.com/golang/protobuf v1.5.4 // indirect
github.com/google/go-github/v53 v53.2.0
github.com/google/go-querystring v1.1.0 // indirect
golang.org/x/crypto v0.31.0 // indirect
golang.org/x/oauth2 v0.18.0
golang.org/x/sys v0.28.0 // indirect
google.golang.org/appengine v1.6.8 // indirect
google.golang.org/protobuf v1.33.0 // indirect
)
require (
github.com/dlclark/regexp2 v1.11.0 // indirect
github.com/gorilla/securecookie v1.1.2 // indirect
github.com/yuin/goldmark-emoji v1.0.2
)