go.mod 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. module github.com/syncthing/syncthing
  2. require (
  3. github.com/AudriusButkevicius/pfilter v0.0.0-20210511165305-e9aaf99ab213
  4. github.com/AudriusButkevicius/recli v0.0.6
  5. github.com/alecthomas/kong v0.2.16
  6. github.com/bkaradzic/go-lz4 v0.0.0-20160924222819-7224d8d8f27e
  7. github.com/calmh/xdr v1.1.0
  8. github.com/ccding/go-stun v0.1.3
  9. github.com/certifi/gocertifi v0.0.0-20210429200110-83314bf6d27c // indirect
  10. github.com/chmduquesne/rollinghash v0.0.0-20180912150627-a60f8e7142b5
  11. github.com/cpuguy83/go-md2man/v2 v2.0.0 // indirect
  12. github.com/d4l3k/messagediff v1.2.1
  13. github.com/dchest/siphash v1.2.2
  14. github.com/flynn-archive/go-shlex v0.0.0-20150515145356-3f9db97f8568
  15. github.com/getsentry/raven-go v0.2.0
  16. github.com/go-asn1-ber/asn1-ber v1.5.3 // indirect
  17. github.com/go-ldap/ldap/v3 v3.3.0
  18. github.com/gobwas/glob v0.2.3
  19. github.com/gogo/protobuf v1.3.2
  20. github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da
  21. github.com/golang/protobuf v1.5.2
  22. github.com/greatroar/blobloom v0.7.0
  23. github.com/hashicorp/golang-lru v0.5.4
  24. github.com/jackpal/gateway v1.0.7
  25. github.com/jackpal/go-nat-pmp v1.0.2
  26. github.com/julienschmidt/httprouter v1.3.0
  27. github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51
  28. github.com/klauspost/cpuid/v2 v2.0.6 // indirect
  29. github.com/lib/pq v1.10.1
  30. github.com/lucas-clemente/quic-go v0.19.3
  31. github.com/maruel/panicparse v1.6.1
  32. github.com/maxbrunsfeld/counterfeiter/v6 v6.3.0
  33. github.com/minio/sha256-simd v1.0.0
  34. github.com/miscreant/miscreant.go v0.0.0-20200214223636-26d376326b75
  35. github.com/oschwald/geoip2-golang v1.5.0
  36. github.com/petermattis/goid v0.0.0-20180202154549-b0b1615b78e5 // indirect
  37. github.com/pkg/errors v0.9.1
  38. github.com/prometheus/client_golang v1.10.0
  39. github.com/rcrowley/go-metrics v0.0.0-20201227073835-cf1acfcdf475
  40. github.com/russross/blackfriday/v2 v2.1.0 // indirect
  41. github.com/sasha-s/go-deadlock v0.2.0
  42. github.com/shirou/gopsutil/v3 v3.21.4
  43. github.com/syncthing/notify v0.0.0-20210308121556-f45149b04939
  44. github.com/syndtr/goleveldb v1.0.1-0.20200815071216-d9e9293bd0f7
  45. github.com/thejerf/suture/v4 v4.0.1
  46. github.com/urfave/cli v1.22.5
  47. github.com/vitrun/qart v0.0.0-20160531060029-bf64b92db6b0
  48. golang.org/x/crypto v0.0.0-20210421170649-83a5a9bb288b
  49. golang.org/x/net v0.0.0-20210428140749-89ef3d95e781
  50. golang.org/x/sys v0.0.0-20210426230700-d19ff857e887
  51. golang.org/x/text v0.3.6
  52. golang.org/x/time v0.0.0-20210220033141-f8bda1e9f3ba
  53. golang.org/x/tools v0.1.0
  54. )
  55. go 1.14