mirror of
https://github.com/haiwen/seafile-server.git
synced 2025-08-02 15:48:06 +00:00
* Check if env is empty string * Fix ci error * Check if env is empty string * Fix security issue for jwt --------- Co-authored-by: Heran Yang <heran.yang@seafile.com>
28 lines
868 B
Modula-2
28 lines
868 B
Modula-2
module github.com/haiwen/seafile-server/fileserver
|
|
|
|
go 1.22
|
|
|
|
require (
|
|
github.com/dgraph-io/ristretto v0.2.0
|
|
github.com/go-redis/redis/v8 v8.11.5
|
|
github.com/go-sql-driver/mysql v1.5.0
|
|
github.com/golang-jwt/jwt/v5 v5.2.2
|
|
github.com/google/uuid v1.1.1
|
|
github.com/gorilla/mux v1.7.4
|
|
github.com/json-iterator/go v1.1.12
|
|
github.com/sirupsen/logrus v1.8.1
|
|
golang.org/x/text v0.3.8
|
|
gopkg.in/ini.v1 v1.55.0
|
|
)
|
|
|
|
require (
|
|
github.com/cespare/xxhash/v2 v2.1.2 // indirect
|
|
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
|
|
github.com/dustin/go-humanize v1.0.1 // indirect
|
|
github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421 // indirect
|
|
github.com/modern-go/reflect2 v1.0.2 // indirect
|
|
github.com/pkg/errors v0.9.1 // indirect
|
|
github.com/smartystreets/goconvey v1.6.4 // indirect
|
|
golang.org/x/sys v0.11.0 // indirect
|
|
)
|