2021-01-04 03:41:53 +00:00
|
|
|
module github.com/haiwen/seafile-server/fileserver
|
|
|
|
|
2025-03-31 08:46:24 +00:00
|
|
|
go 1.22
|
2021-01-04 03:41:53 +00:00
|
|
|
|
|
|
|
require (
|
2025-03-03 04:39:35 +00:00
|
|
|
github.com/dgraph-io/ristretto v0.2.0
|
2025-03-31 08:46:24 +00:00
|
|
|
github.com/go-redis/redis/v8 v8.11.5
|
2021-01-04 03:41:53 +00:00
|
|
|
github.com/go-sql-driver/mysql v1.5.0
|
2025-04-01 10:22:25 +00:00
|
|
|
github.com/golang-jwt/jwt/v5 v5.2.2
|
2021-01-04 03:41:53 +00:00
|
|
|
github.com/google/uuid v1.1.1
|
|
|
|
github.com/gorilla/mux v1.7.4
|
2022-11-10 08:17:34 +00:00
|
|
|
github.com/json-iterator/go v1.1.12
|
|
|
|
github.com/sirupsen/logrus v1.8.1
|
2024-08-12 06:59:45 +00:00
|
|
|
golang.org/x/text v0.3.8
|
2021-01-04 03:41:53 +00:00
|
|
|
gopkg.in/ini.v1 v1.55.0
|
|
|
|
)
|
2022-11-10 08:17:34 +00:00
|
|
|
|
|
|
|
require (
|
2025-03-31 08:46:24 +00:00
|
|
|
github.com/cespare/xxhash/v2 v2.1.2 // indirect
|
|
|
|
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
|
2025-03-03 04:39:35 +00:00
|
|
|
github.com/dustin/go-humanize v1.0.1 // indirect
|
2022-11-10 08:17:34 +00:00
|
|
|
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
|
2025-03-03 04:39:35 +00:00
|
|
|
golang.org/x/sys v0.11.0 // indirect
|
2022-11-10 08:17:34 +00:00
|
|
|
)
|