mirror of
https://github.com/henrybear327/Proton-API-Bridge.git
synced 2026-06-11 07:15:52 -04:00
The Proton-API-Bridge should not be attempting to take over, nor re-define, the existing proton-go-api interfaces. This is known has an "unfriendly fork" and increases the overall complexity of maintaining the Proton-API-Bridge. All changes to the proton-go-api should be done as "friendly" as possible, and should be submitted back upstream for inclusion. This improves the functionality of the proton-go-api for more than just 1 project, and it reduces the long-term maintenance required for Proton-API-Bridge. To this end, Proton-API-Bridge should be written to always assume it is using github.com/ProtonMail/proton-go-api and leverage the `replace` operation in go.mod in order to leverage our "friendly fork" of proton-go-api. I.e. the long-term goal should be to _not_ maintain a fork of proton-go-api. > Anything else would be uncivilized.
40 lines
1.6 KiB
Modula-2
40 lines
1.6 KiB
Modula-2
module github.com/henrybear327/Proton-API-Bridge
|
|
|
|
go 1.23
|
|
|
|
toolchain go1.23.4
|
|
|
|
require (
|
|
github.com/ProtonMail/gluon v0.17.1-0.20230724134000-308be39be96e
|
|
github.com/ProtonMail/go-proton-api v0.4.1-0.20241202144358-98a73ffe6d20
|
|
github.com/ProtonMail/gopenpgp/v2 v2.8.2
|
|
github.com/relvacode/iso8601 v1.6.0
|
|
golang.org/x/sync v0.10.0
|
|
)
|
|
|
|
require (
|
|
github.com/ProtonMail/bcrypt v0.0.0-20211005172633-e235017c1baf // indirect
|
|
github.com/ProtonMail/go-crypto v1.1.5 // indirect
|
|
github.com/ProtonMail/go-mime v0.0.0-20230322103455-7d82a3887f2f // indirect
|
|
github.com/ProtonMail/go-srp v0.0.7 // indirect
|
|
github.com/PuerkitoBio/goquery v1.10.1 // indirect
|
|
github.com/andybalholm/cascadia v1.3.3 // indirect
|
|
github.com/bradenaw/juniper v0.15.3 // indirect
|
|
github.com/cloudflare/circl v1.5.0 // indirect
|
|
github.com/cronokirby/saferith v0.33.0 // indirect
|
|
github.com/emersion/go-message v0.18.2 // indirect
|
|
github.com/emersion/go-vcard v0.0.0-20241024213814-c9703dde27ff // indirect
|
|
github.com/go-resty/resty/v2 v2.16.3 // indirect
|
|
github.com/google/uuid v1.6.0 // indirect
|
|
github.com/pkg/errors v0.9.1 // indirect
|
|
github.com/sirupsen/logrus v1.9.3 // indirect
|
|
gitlab.com/c0b/go-ordered-json v0.0.0-20201030195603-febf46534d5a // indirect
|
|
golang.org/x/crypto v0.32.0 // indirect
|
|
golang.org/x/exp v0.0.0-20250106191152-7588d65b2ba8 // indirect
|
|
golang.org/x/net v0.34.0 // indirect
|
|
golang.org/x/sys v0.29.0 // indirect
|
|
golang.org/x/text v0.21.0 // indirect
|
|
)
|
|
|
|
replace github.com/ProtonMail/go-proton-api => github.com/henrybear327/go-proton-api v0.0.0-20240605152832-2f693dee7b13
|