-
Notifications
You must be signed in to change notification settings - Fork 52
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move must and match packages out of internal; add generic must functions
- Loading branch information
Showing
75 changed files
with
346 additions
and
368 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,46 @@ | ||
module github.com/matrix-org/complement | ||
|
||
go 1.16 | ||
go 1.18 | ||
|
||
require ( | ||
github.com/Azure/go-ansiterm v0.0.0-20210617225240-d185dfc1b5a1 // indirect | ||
github.com/Microsoft/go-winio v0.5.2 // indirect | ||
github.com/docker/distribution v2.8.2+incompatible // indirect | ||
github.com/docker/docker v20.10.24+incompatible | ||
github.com/docker/go-connections v0.4.0 | ||
github.com/docker/go-units v0.4.0 // indirect | ||
github.com/gogo/protobuf v1.3.2 // indirect | ||
github.com/gorilla/mux v1.8.0 | ||
github.com/matrix-org/gomatrix v0.0.0-20220926102614-ceba4d9f7530 | ||
github.com/matrix-org/gomatrixserverlib v0.0.0-20230921171121-0466775328c7 | ||
github.com/matrix-org/util v0.0.0-20221111132719-399730281e66 | ||
github.com/sirupsen/logrus v1.9.3 | ||
github.com/tidwall/gjson v1.16.0 | ||
github.com/tidwall/sjson v1.2.5 | ||
golang.org/x/exp v0.0.0-20230905200255-921286631fa9 | ||
gonum.org/v1/plot v0.11.0 | ||
maunium.net/go/mautrix v0.11.0 | ||
) | ||
|
||
require ( | ||
git.sr.ht/~sbinet/gg v0.3.1 // indirect | ||
github.com/Azure/go-ansiterm v0.0.0-20210617225240-d185dfc1b5a1 // indirect | ||
github.com/Microsoft/go-winio v0.5.2 // indirect | ||
github.com/ajstarks/svgo v0.0.0-20211024235047-1546f124cd8b // indirect | ||
github.com/docker/distribution v2.8.2+incompatible // indirect | ||
github.com/docker/go-units v0.4.0 // indirect | ||
github.com/go-fonts/liberation v0.2.0 // indirect | ||
github.com/go-latex/latex v0.0.0-20210823091927-c0d11ff05a81 // indirect | ||
github.com/go-pdf/fpdf v0.6.0 // indirect | ||
github.com/gogo/protobuf v1.3.2 // indirect | ||
github.com/golang/freetype v0.0.0-20170609003504-e2365dfdc4a0 // indirect | ||
github.com/moby/term v0.0.0-20210610120745-9d4ed1856297 // indirect | ||
github.com/morikuni/aec v1.0.0 // indirect | ||
github.com/opencontainers/go-digest v1.0.0 // indirect | ||
github.com/opencontainers/image-spec v1.0.3-0.20211202183452-c5a74bcca799 // indirect | ||
github.com/sirupsen/logrus v1.9.3 | ||
github.com/tidwall/gjson v1.16.0 | ||
github.com/pkg/errors v0.9.1 // indirect | ||
github.com/tidwall/match v1.1.1 // indirect | ||
github.com/tidwall/pretty v1.2.1 // indirect | ||
github.com/tidwall/sjson v1.2.5 | ||
golang.org/x/crypto v0.13.0 // indirect | ||
golang.org/x/exp v0.0.0-20200224162631-6cc2880d07d6 // indirect | ||
golang.org/x/image v0.5.0 // indirect | ||
golang.org/x/net v0.10.0 // indirect | ||
golang.org/x/sys v0.12.0 // indirect | ||
golang.org/x/text v0.13.0 // indirect | ||
golang.org/x/time v0.0.0-20210723032227-1f47c861a9ac // indirect | ||
gonum.org/v1/plot v0.11.0 | ||
gotest.tools/v3 v3.0.3 // indirect | ||
maunium.net/go/mautrix v0.11.0 | ||
) |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.