mirror of
https://github.com/haiwen/seafile-server.git
synced 2025-06-27 07:26:50 +00:00
* Add notification server of go Modify path of pkg Send notification for update-repo event Delete client pkg and use reflect select to send message Modify output of log Add formatter of log Add jwt authentication go add get jwt token api CI support compile libjwt Get group users from database * Add ping to test mysql is alive Co-authored-by: 杨赫然 <heran.yang@seafile.com>
28 lines
896 B
Modula-2
28 lines
896 B
Modula-2
module github.com/haiwen/seafile-server/fileserver
|
|
|
|
go 1.17
|
|
|
|
require (
|
|
github.com/dgraph-io/ristretto v0.1.1
|
|
github.com/dgrijalva/jwt-go v3.2.0+incompatible
|
|
github.com/go-sql-driver/mysql v1.5.0
|
|
github.com/google/uuid v1.1.1
|
|
github.com/gorilla/mux v1.7.4
|
|
github.com/json-iterator/go v1.1.12
|
|
github.com/mattn/go-sqlite3 v1.14.0
|
|
github.com/sirupsen/logrus v1.8.1
|
|
golang.org/x/text v0.3.7
|
|
gopkg.in/ini.v1 v1.55.0
|
|
)
|
|
|
|
require (
|
|
github.com/cespare/xxhash/v2 v2.1.1 // indirect
|
|
github.com/dustin/go-humanize v1.0.0 // indirect
|
|
github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b // 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.0.0-20221010170243-090e33056c14 // indirect
|
|
)
|