-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgo.mod
25 lines (22 loc) · 808 Bytes
/
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
module github.com/delta/codecharacter-lsp-2023
go 1.18
require (
github.com/fatih/color v1.13.0
github.com/google/uuid v1.3.0
github.com/gorilla/websocket v1.5.0
github.com/joho/godotenv v1.4.0
github.com/labstack/echo/v4 v4.9.0
)
require (
github.com/golang-jwt/jwt v3.2.2+incompatible // indirect
github.com/labstack/gommon v0.4.0 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.16 // indirect
github.com/valyala/bytebufferpool v1.0.0 // indirect
github.com/valyala/fasttemplate v1.2.1 // indirect
golang.org/x/crypto v0.0.0-20221012134737-56aed061732a // indirect
golang.org/x/net v0.7.0 // indirect
golang.org/x/sys v0.5.0 // indirect
golang.org/x/text v0.7.0 // indirect
golang.org/x/time v0.0.0-20220922220347-f3bd1da661af // indirect
)