mirror of
https://github.com/octoleo/syncthing.git
synced 2024-11-17 18:45:13 +00:00
ba6ac2f604
This adds a small package `geoip` which knows how to download and manage the Maxmind GeoLite2 database we use. This removes the need for various scripts to download and manage the geoip database, something that today happens on Docker startup for the relay pool server and using various hand written hacks for the usage reporting server. The database is downloaded when needed and then refreshed on a best-effort basis weekly.
97 lines
4.1 KiB
Modula-2
97 lines
4.1 KiB
Modula-2
module github.com/syncthing/syncthing
|
|
|
|
go 1.21.0
|
|
|
|
require (
|
|
github.com/AudriusButkevicius/recli v0.0.7-0.20220911121932-d000ce8fbf0f
|
|
github.com/alecthomas/kong v0.9.0
|
|
github.com/calmh/incontainer v1.0.0
|
|
github.com/calmh/xdr v1.1.0
|
|
github.com/ccding/go-stun v0.1.4
|
|
github.com/chmduquesne/rollinghash v4.0.0+incompatible
|
|
github.com/d4l3k/messagediff v1.2.1
|
|
github.com/flynn-archive/go-shlex v0.0.0-20150515145356-3f9db97f8568
|
|
github.com/getsentry/raven-go v0.2.0
|
|
github.com/go-ldap/ldap/v3 v3.4.6
|
|
github.com/gobwas/glob v0.2.3
|
|
github.com/gogo/protobuf v1.3.2
|
|
github.com/greatroar/blobloom v0.7.2
|
|
github.com/hashicorp/golang-lru/v2 v2.0.7
|
|
github.com/jackpal/gateway v1.0.14
|
|
github.com/jackpal/go-nat-pmp v1.0.2
|
|
github.com/julienschmidt/httprouter v1.3.0
|
|
github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51
|
|
github.com/lib/pq v1.10.9
|
|
github.com/maruel/panicparse/v2 v2.3.1
|
|
github.com/maxbrunsfeld/counterfeiter/v6 v6.8.1
|
|
github.com/maxmind/geoipupdate/v6 v6.1.0
|
|
github.com/minio/sha256-simd v1.0.1
|
|
github.com/miscreant/miscreant.go v0.0.0-20200214223636-26d376326b75
|
|
github.com/oschwald/geoip2-golang v1.9.0
|
|
github.com/pierrec/lz4/v4 v4.1.21
|
|
github.com/prometheus/client_golang v1.19.0
|
|
github.com/quic-go/quic-go v0.43.0
|
|
github.com/rcrowley/go-metrics v0.0.0-20201227073835-cf1acfcdf475
|
|
github.com/shirou/gopsutil/v3 v3.24.3
|
|
github.com/syncthing/notify v0.0.0-20210616190510-c6b7342338d2
|
|
github.com/syndtr/goleveldb v1.0.1-0.20220721030215-126854af5e6d
|
|
github.com/thejerf/suture/v4 v4.0.5
|
|
github.com/urfave/cli v1.22.14
|
|
github.com/vitrun/qart v0.0.0-20160531060029-bf64b92db6b0
|
|
github.com/willabides/kongplete v0.4.0
|
|
go.uber.org/automaxprocs v1.5.3
|
|
golang.org/x/crypto v0.22.0
|
|
golang.org/x/net v0.24.0
|
|
golang.org/x/sys v0.19.0
|
|
golang.org/x/text v0.14.0
|
|
golang.org/x/time v0.5.0
|
|
golang.org/x/tools v0.20.0
|
|
google.golang.org/protobuf v1.33.0
|
|
)
|
|
|
|
require (
|
|
github.com/Azure/go-ntlmssp v0.0.0-20221128193559-754e69321358 // indirect
|
|
github.com/alexbrainman/sspi v0.0.0-20231016080023-1a75b4708caa // indirect
|
|
github.com/beorn7/perks v1.0.1 // indirect
|
|
github.com/cenkalti/backoff/v4 v4.2.1 // indirect
|
|
github.com/certifi/gocertifi v0.0.0-20210507211836-431795d63e8d // indirect
|
|
github.com/cespare/xxhash/v2 v2.3.0 // indirect
|
|
github.com/cpuguy83/go-md2man/v2 v2.0.4 // indirect
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
|
github.com/fsnotify/fsnotify v1.7.0 // indirect
|
|
github.com/go-asn1-ber/asn1-ber v1.5.5 // indirect
|
|
github.com/go-ole/go-ole v1.3.0 // indirect
|
|
github.com/go-task/slim-sprig v0.0.0-20230315185526-52ccab3ef572 // indirect
|
|
github.com/gofrs/flock v0.8.1 // indirect
|
|
github.com/golang/snappy v0.0.4 // indirect
|
|
github.com/google/pprof v0.0.0-20240402174815-29b9bb013b0f // indirect
|
|
github.com/google/uuid v1.6.0 // indirect
|
|
github.com/hashicorp/errwrap v1.1.0 // indirect
|
|
github.com/hashicorp/go-multierror v1.1.1 // indirect
|
|
github.com/klauspost/cpuid/v2 v2.2.7 // indirect
|
|
github.com/nxadm/tail v1.4.11 // indirect
|
|
github.com/onsi/ginkgo/v2 v2.17.1 // indirect
|
|
github.com/onsi/gomega v1.31.1 // indirect
|
|
github.com/oschwald/maxminddb-golang v1.12.0 // indirect
|
|
github.com/pkg/errors v0.9.1 // indirect
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
|
github.com/posener/complete v1.2.3 // indirect
|
|
github.com/power-devops/perfstat v0.0.0-20240221224432-82ca36839d55 // indirect
|
|
github.com/prometheus/client_model v0.6.1 // indirect
|
|
github.com/prometheus/common v0.52.2 // indirect
|
|
github.com/prometheus/procfs v0.13.0 // indirect
|
|
github.com/riywo/loginshell v0.0.0-20200815045211-7d26008be1ab // indirect
|
|
github.com/russross/blackfriday/v2 v2.1.0 // indirect
|
|
github.com/stretchr/objx v0.5.2 // indirect
|
|
github.com/stretchr/testify v1.9.0 // indirect
|
|
github.com/yusufpapurcu/wmi v1.2.4 // indirect
|
|
go.uber.org/mock v0.4.0 // indirect
|
|
golang.org/x/exp v0.0.0-20240404231335-c0f41cb1a7a0 // indirect
|
|
golang.org/x/mod v0.17.0 // indirect
|
|
golang.org/x/sync v0.7.0 // indirect
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
)
|
|
|
|
// https://github.com/gobwas/glob/pull/55
|
|
replace github.com/gobwas/glob v0.2.3 => github.com/calmh/glob v0.0.0-20220615080505-1d823af5017b
|