mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-01-18 10:09:59 -06:00
* refactored the models to be strongly typed with structs and mapstruct to decompose the dynamic parts of the JMAP payloads * externalized large JSON strings for tests into .json files under testdata/ * added a couple of fantasy Graph groupware APIs to explore further options * added k6 scripts to test those graph/me/messages APIs, with a setup program to set up users in LDAP, fill their IMAP inbox, activate them in Stalwart, cleaning things up, etc...
37 lines
1.4 KiB
Modula-2
37 lines
1.4 KiB
Modula-2
module opencloud.eu/groupware/tests
|
|
|
|
go 1.24.2
|
|
|
|
require github.com/go-ldap/ldap/v3 v3.4.11
|
|
|
|
require (
|
|
github.com/cention-sany/utf7 v0.0.0-20170124080048-26cad61bd60a // indirect
|
|
github.com/emersion/go-message v0.18.1 // indirect
|
|
github.com/emersion/go-sasl v0.0.0-20231106173351-e73c9f7bad43 // indirect
|
|
github.com/gogs/chardet v0.0.0-20211120154057-b7413eaefb8f // indirect
|
|
github.com/jaytaylor/html2text v0.0.0-20230321000545-74c2419ad056 // indirect
|
|
github.com/mattn/go-colorable v0.1.13 // indirect
|
|
github.com/mattn/go-isatty v0.0.19 // indirect
|
|
github.com/mattn/go-runewidth v0.0.15 // indirect
|
|
github.com/olekukonko/tablewriter v0.0.5 // indirect
|
|
github.com/pkg/errors v0.9.1 // indirect
|
|
github.com/rivo/uniseg v0.4.4 // indirect
|
|
github.com/ssor/bom v0.0.0-20170718123548-6386211fdfcf // indirect
|
|
golang.org/x/net v0.38.0 // indirect
|
|
golang.org/x/sys v0.31.0 // indirect
|
|
golang.org/x/text v0.24.0 // indirect
|
|
)
|
|
|
|
require (
|
|
github.com/Azure/go-ntlmssp v0.0.0-20221128193559-754e69321358 // indirect
|
|
github.com/dustinkirkland/golang-petname v0.0.0-20240428194347-eebcea082ee0
|
|
github.com/emersion/go-imap/v2 v2.0.0-beta.5
|
|
github.com/go-asn1-ber/asn1-ber v1.5.8-0.20250403174932-29230038a667 // indirect
|
|
github.com/go-faker/faker/v4 v4.6.1
|
|
github.com/google/uuid v1.6.0 // indirect
|
|
github.com/jhillyerd/enmime v1.3.0
|
|
github.com/rs/zerolog v1.34.0
|
|
golang.org/x/crypto v0.36.0 // indirect
|
|
gopkg.in/loremipsum.v1 v1.1.2
|
|
)
|