Highly-opinionated (ex-bullshit-free) MTPROTO proxy for Telegram. If you use v1.0 or upgrade broke you proxy, please read the chapter Version 2
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

go.mod 1.5KB

1234567891011121314151617181920212223242526272829303132333435
  1. module github.com/9seconds/mtg
  2. replace github.com/golang/lint => github.com/golang/lint v0.0.0-20190227174305-8f45f776aaf1
  3. require (
  4. github.com/OneOfOne/xxhash v1.2.5 // indirect
  5. github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751 // indirect
  6. github.com/alecthomas/units v0.0.0-20190717042225-c3de453c63f4
  7. github.com/allegro/bigcache v1.2.1
  8. github.com/beevik/ntp v0.2.0
  9. github.com/cespare/xxhash v1.1.0
  10. github.com/dustin/go-humanize v1.0.0
  11. github.com/gammazero/deque v0.0.0-20190521012701-46e4ffb7a622
  12. github.com/gofrs/uuid v3.2.0+incompatible
  13. github.com/juju/errors v0.0.0-20190806202954-0232dcc7464d
  14. github.com/juju/loggo v0.0.0-20190526231331-6e530bcce5d8 // indirect
  15. github.com/juju/testing v0.0.0-20191001232224-ce9dec17d28b // indirect
  16. github.com/kr/pretty v0.1.0 // indirect
  17. github.com/pkg/errors v0.8.1
  18. github.com/prometheus/client_golang v1.1.0
  19. github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4 // indirect
  20. github.com/spaolacci/murmur3 v1.1.0 // indirect
  21. github.com/stretchr/testify v1.4.0 // indirect
  22. go.uber.org/atomic v1.4.0 // indirect
  23. go.uber.org/multierr v1.1.0 // indirect
  24. go.uber.org/zap v1.10.0
  25. golang.org/x/net v0.0.0-20190813141303-74dc4d7220e7 // indirect
  26. golang.org/x/sys v0.0.0-20190813064441-fde4db37ae7a
  27. gopkg.in/alecthomas/kingpin.v2 v2.2.6
  28. gopkg.in/alexcesaro/statsd.v2 v2.0.0
  29. gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 // indirect
  30. gopkg.in/mgo.v2 v2.0.0-20190816093944-a6b53ec6cb22 // indirect
  31. )
  32. go 1.13