1dfcf61f63
This commit upgrades go-webdav to what is currently the master branch. The go-webdav client implementation gained some features with regards to service discovery that alps can benefit from. With this change, one can pass e.g. the following upstream URL: carddav+insecure://example.com/.well-known/carddav This URL is defined in [RFC 6764, section 6][1]. If the server supports it, it will respond with a redirect to the currently authenticated user's principal URL. In the version used so far, the go-webdav client does not handle this redirect well. [1]: https://datatracker.ietf.org/doc/html/rfc6764#section-6 See also: https://github.com/emersion/go-webdav/commit/0363312
39 lines
1.8 KiB
Modula-2
39 lines
1.8 KiB
Modula-2
module git.sr.ht/~migadu/alps
|
|
|
|
go 1.13
|
|
|
|
require (
|
|
github.com/aymerick/douceur v0.2.0
|
|
github.com/chris-ramon/douceur v0.2.0
|
|
github.com/dustin/go-humanize v1.0.0
|
|
github.com/emersion/go-ical v0.0.0-20220501214237-cf19eb74dd43
|
|
github.com/emersion/go-imap v1.2.1
|
|
github.com/emersion/go-imap-metadata v0.0.0-20200128185110-9d939d2a0915
|
|
github.com/emersion/go-imap-move v0.0.0-20210907172020-fe4558f9c872
|
|
github.com/emersion/go-imap-specialuse v0.0.0-20201101201809-1ab93d3d150e
|
|
github.com/emersion/go-message v0.15.0
|
|
github.com/emersion/go-sasl v0.0.0-20211008083017-0b9dcfb154ac
|
|
github.com/emersion/go-smtp v0.15.0
|
|
github.com/emersion/go-vcard v0.0.0-20210521075357-3445b9171995
|
|
github.com/emersion/go-webdav v0.3.2-0.20220531141108-9bc7a8f15b2f
|
|
github.com/fernet/fernet-go v0.0.0-20211208181803-9f70042a33ee
|
|
github.com/google/uuid v1.3.0
|
|
github.com/kr/pretty v0.1.0 // indirect
|
|
github.com/labstack/echo/v4 v4.7.2
|
|
github.com/labstack/gommon v0.3.1
|
|
github.com/mattn/go-colorable v0.1.12 // indirect
|
|
github.com/mattn/go-runewidth v0.0.13 // indirect
|
|
github.com/microcosm-cc/bluemonday v1.0.18
|
|
github.com/olekukonko/tablewriter v0.0.5 // indirect
|
|
github.com/ssor/bom v0.0.0-20170718123548-6386211fdfcf // indirect
|
|
github.com/teambition/rrule-go v1.8.0 // indirect
|
|
github.com/yuin/gopher-lua v0.0.0-20220504180219-658193537a64
|
|
gitlab.com/golang-commonmark/linkify v0.0.0-20200225224916-64bca66f6ad3
|
|
golang.org/x/crypto v0.0.0-20220507011949-2cf3adece122 // indirect
|
|
golang.org/x/net v0.0.0-20220425223048-2871e0cb64e4
|
|
golang.org/x/sys v0.0.0-20220503163025-988cb79eb6c6 // indirect
|
|
golang.org/x/time v0.0.0-20220411224347-583f2d630306 // indirect
|
|
gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 // indirect
|
|
jaytaylor.com/html2text v0.0.0-20211105163654-bc68cce691ba
|
|
layeh.com/gopher-luar v1.0.10
|
|
)
|