@@ -2,38 +2,40 @@ module github.com/PythonHacker24/linux-acl-management-backend
22
33go 1.24.2
44
5+ require (
6+ github.com/MakeNowJust/heredoc v1.0.0
7+ github.com/davecgh/go-spew v1.1.1
8+ github.com/go-ldap/ldap/v3 v3.4.11
9+ github.com/golang-jwt/jwt/v5 v5.2.2
10+ github.com/google/uuid v1.6.0
11+ github.com/gorilla/websocket v1.5.3
12+ github.com/jackc/pgx/v5 v5.7.5
13+ github.com/joho/godotenv v1.5.1
14+ github.com/redis/go-redis/v9 v9.9.0
15+ github.com/spf13/cobra v1.9.1
16+ go.uber.org/automaxprocs v1.6.0
17+ go.uber.org/zap v1.27.0
18+ google.golang.org/grpc v1.73.0
19+ google.golang.org/protobuf v1.36.6
20+ gopkg.in/natefinch/lumberjack.v2 v2.2.1
21+ gopkg.in/yaml.v3 v3.0.1
22+ )
23+
524require (
625 github.com/Azure/go-ntlmssp v0.0.0-20221128193559-754e69321358 // indirect
7- github.com/MakeNowJust/heredoc v1.0.0 // indirect
8- github.com/bufbuild/buf v1.53.0 // indirect
926 github.com/cespare/xxhash/v2 v2.3.0 // indirect
10- github.com/davecgh/go-spew v1.1.1 // indirect
1127 github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
1228 github.com/go-asn1-ber/asn1-ber v1.5.8-0.20250403174932-29230038a667 // indirect
13- github.com/go-ldap/ldap/v3 v3.4.11 // indirect
14- github.com/golang-jwt/jwt/v5 v5.2.2 // indirect
15- github.com/google/uuid v1.6.0 // indirect
16- github.com/gorilla/websocket v1.5.3 // indirect
1729 github.com/inconshreveable/mousetrap v1.1.0 // indirect
18- github.com/jackc/pgio v1.0.0 // indirect
1930 github.com/jackc/pgpassfile v1.0.0 // indirect
2031 github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761 // indirect
21- github.com/jackc/pgtype v1.14.4 // indirect
22- github.com/jackc/pgx/v5 v5.7.5 // indirect
23- github.com/joho/godotenv v1.5.1 // indirect
24- github.com/redis/go-redis/v9 v9.9.0 // indirect
25- github.com/spf13/cobra v1.9.1 // indirect
32+ github.com/rogpeppe/go-internal v1.14.1 // indirect
2633 github.com/spf13/pflag v1.0.6 // indirect
27- go.uber.org/automaxprocs v1.6 .0 // indirect
34+ github.com/stretchr/testify v1.10 .0 // indirect
2835 go.uber.org/multierr v1.11.0 // indirect
29- go.uber.org/zap v1.27.0 // indirect
3036 golang.org/x/crypto v0.37.0 // indirect
3137 golang.org/x/net v0.39.0 // indirect
3238 golang.org/x/sys v0.32.0 // indirect
3339 golang.org/x/text v0.24.0 // indirect
3440 google.golang.org/genproto/googleapis/rpc v0.0.0-20250414145226-207652e42e2e // indirect
35- google.golang.org/grpc v1.73.0 // indirect
36- google.golang.org/protobuf v1.36.6 // indirect
37- gopkg.in/natefinch/lumberjack.v2 v2.2.1 // indirect
38- gopkg.in/yaml.v3 v3.0.1 // indirect
3941)
0 commit comments