mirror of
https://github.com/mattermost/mattermost.git
synced 2025-02-25 18:55:24 -06:00
It was a good decision in hindsight to keep the public module as 0.x because this would have been a breaking change again. https://mattermost.atlassian.net/browse/MM-53032 ```release-note Changed the Go module path from github.com/mattermost/mattermost-server/server/v8 to github.com/mattermost/mattermost/server/v8. For the public facing module, it's path is also changed from github.com/mattermost/mattermost-server/server/public to github.com/mattermost/mattermost/server/public ```
69 lines
2.6 KiB
Modula-2
69 lines
2.6 KiB
Modula-2
module github.com/mattermost/mattermost/server/public
|
|
|
|
go 1.19
|
|
|
|
require (
|
|
github.com/blang/semver v3.5.1+incompatible
|
|
github.com/dyatlov/go-opengraph/opengraph v0.0.0-20220524092352-606d7b1e5f8a
|
|
github.com/francoispqt/gojay v1.2.13
|
|
github.com/go-sql-driver/mysql v1.7.0
|
|
github.com/gorilla/websocket v1.5.0
|
|
github.com/graph-gophers/graphql-go v1.5.1-0.20230110080634-edea822f558a
|
|
github.com/hashicorp/go-hclog v1.5.0
|
|
github.com/hashicorp/go-plugin v1.4.9
|
|
github.com/lib/pq v1.10.7
|
|
github.com/mattermost/go-i18n v1.11.1-0.20211013152124-5c415071e404
|
|
github.com/mattermost/ldap v0.0.0-20201202150706-ee0e6284187d
|
|
github.com/mattermost/logr/v2 v2.0.16
|
|
github.com/pborman/uuid v1.2.1
|
|
github.com/pkg/errors v0.9.1
|
|
github.com/stretchr/testify v1.8.2
|
|
github.com/tinylib/msgp v1.1.8
|
|
github.com/vmihailenco/msgpack/v5 v5.3.5
|
|
golang.org/x/crypto v0.8.0
|
|
golang.org/x/text v0.9.0
|
|
golang.org/x/tools v0.8.0
|
|
gopkg.in/yaml.v2 v2.4.0
|
|
)
|
|
|
|
require (
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
|
github.com/fatih/color v1.15.0 // indirect
|
|
github.com/go-asn1-ber/asn1-ber v1.5.4 // indirect
|
|
github.com/golang/protobuf v1.5.3 // indirect
|
|
github.com/google/uuid v1.3.0 // indirect
|
|
github.com/hashicorp/yamux v0.1.1 // indirect
|
|
github.com/kr/pretty v0.3.0 // indirect
|
|
github.com/mattn/go-colorable v0.1.13 // indirect
|
|
github.com/mattn/go-isatty v0.0.18 // indirect
|
|
github.com/mitchellh/go-testing-interface v1.14.1 // indirect
|
|
github.com/oklog/run v1.1.0 // indirect
|
|
github.com/pelletier/go-toml v1.9.5 // indirect
|
|
github.com/philhofer/fwd v1.1.2 // indirect
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
|
github.com/stretchr/objx v0.5.0 // indirect
|
|
github.com/vmihailenco/tagparser/v2 v2.0.0 // indirect
|
|
github.com/wiggin77/merror v1.0.4 // indirect
|
|
github.com/wiggin77/srslog v1.0.1 // indirect
|
|
golang.org/x/mod v0.10.0 // indirect
|
|
golang.org/x/net v0.9.0 // indirect
|
|
golang.org/x/sys v0.7.0 // indirect
|
|
google.golang.org/genproto v0.0.0-20230410155749-daa745c078e1 // indirect
|
|
google.golang.org/grpc v1.54.0 // indirect
|
|
google.golang.org/protobuf v1.30.0 // indirect
|
|
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
|
|
gopkg.in/natefinch/lumberjack.v2 v2.2.1 // indirect
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
)
|
|
|
|
// Hack to prevent the willf/bitset module from being upgraded to 1.2.0.
|
|
// They changed the module path from github.com/willf/bitset to
|
|
// github.com/bits-and-blooms/bitset and a couple of dependent repos are yet
|
|
// to update their module paths.
|
|
exclude (
|
|
github.com/RoaringBitmap/roaring v0.7.0
|
|
github.com/RoaringBitmap/roaring v0.7.1
|
|
github.com/dyatlov/go-opengraph v0.0.0-20210112100619-dae8665a5b09
|
|
github.com/willf/bitset v1.2.0
|
|
)
|