mirror of
https://github.com/StackExchange/dnscontrol.git
synced 2025-02-24 15:43:08 +08:00
* adds initial support for INWX * adds all features to the INWX provider * allows domain for tests in creds.json for INWX * runs go generate to update docs for INWX * fixes formatting with gofmt * changes goinwx to github.com/nrdcg/goinwx v0.8.0 * simplifies inwx sandbox check * changes inwx unknown key error to a warning * adds models.PostProcessRecords for inwx records * replaces strings.TrimRight with [:-1] to remove final dot for inwx * adds a comment about the domain creds.json key for the inwx provider * removes warning for invalid creds.json keys in the inwx provider * adds TOTP calculation support for inwx * adds comments to inwxProvider * improves INWX error messages * adds additional documentation about the TOTP support for INWX * adds inwx documentation * bumps goinwx to 0.8.1 to fix the inwx API
61 lines
2.8 KiB
Modula-2
61 lines
2.8 KiB
Modula-2
module github.com/StackExchange/dnscontrol/v3
|
|
|
|
go 1.14
|
|
|
|
require (
|
|
github.com/Azure/azure-sdk-for-go v43.3.0+incompatible
|
|
github.com/Azure/go-autorest/autorest/azure/auth v0.5.0
|
|
github.com/Azure/go-autorest/autorest/to v0.4.0
|
|
github.com/DisposaBoy/JsonConfigReader v0.0.0-20171218180944-5ea4d0ddac55
|
|
github.com/TomOnTime/utfutil v0.0.0-20200626160131-0b0178852c8f
|
|
github.com/andreyvit/diff v0.0.0-20170406064948-c7f18ee00883
|
|
github.com/aws/aws-sdk-go v1.32.10
|
|
github.com/billputer/go-namecheap v0.0.0-20170915210158-0c7adb0710f8
|
|
github.com/cenkalti/backoff v2.1.1+incompatible // indirect
|
|
github.com/cpuguy83/go-md2man/v2 v2.0.0 // indirect
|
|
github.com/dgrijalva/jwt-go v3.2.1-0.20190620180102-5e25c22bd5d6+incompatible // indirect
|
|
github.com/digitalocean/godo v1.36.0
|
|
github.com/dnsimple/dnsimple-go v0.62.0
|
|
github.com/exoscale/egoscale v0.23.0
|
|
github.com/go-acme/lego v2.7.2+incompatible
|
|
github.com/gobwas/glob v0.2.4-0.20181002190808-e7a84e9525fe
|
|
github.com/golang/protobuf v1.4.2 // indirect
|
|
github.com/google/go-github v17.0.0+incompatible
|
|
github.com/google/go-querystring v1.0.1-0.20190318165438-c8c88dbee036 // indirect
|
|
github.com/gopherjs/jquery v0.0.0-20191017083323-73f4c7416038
|
|
github.com/hashicorp/vault/api v1.0.4
|
|
github.com/hexonet/go-sdk v2.2.3+incompatible
|
|
github.com/jarcoal/httpmock v1.0.4 // indirect
|
|
github.com/miekg/dns v1.1.29
|
|
github.com/mittwald/go-powerdns v0.4.0
|
|
github.com/mjibson/esc v0.2.0
|
|
github.com/namedotcom/go v0.0.0-20180403034216-08470befbe04
|
|
github.com/nrdcg/goinwx v0.8.1
|
|
github.com/ovh/go-ovh v0.0.0-20181109152953-ba5adb4cf014
|
|
github.com/philhug/opensrs-go v0.0.0-20171126225031-9dfa7433020d
|
|
github.com/pkg/errors v0.9.1
|
|
github.com/pquerna/otp v1.2.0
|
|
github.com/renier/xmlrpc v0.0.0-20170708154548-ce4a1a486c03 // indirect
|
|
github.com/robertkrimen/otto v0.0.0-20191219234010-c382bd3c16ff
|
|
github.com/sergi/go-diff v1.1.0 // indirect
|
|
github.com/smartystreets/goconvey v0.0.0-20190330032615-68dc04aab96a // indirect
|
|
github.com/softlayer/softlayer-go v0.0.0-20170804160555-5e1c8cccc730
|
|
github.com/stretchr/testify v1.6.1
|
|
github.com/tdewolff/minify v2.3.6+incompatible
|
|
github.com/tdewolff/parse v2.3.4+incompatible // indirect
|
|
github.com/tdewolff/test v1.0.6 // indirect
|
|
github.com/tiramiseb/go-gandi v0.0.0-20200313161345-6b74caa58663
|
|
github.com/urfave/cli/v2 v2.2.0
|
|
github.com/vultr/govultr v0.2.0
|
|
golang.org/x/mod v0.3.0 // indirect
|
|
golang.org/x/net v0.0.0-20200625001655-4c5254603344
|
|
golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d
|
|
golang.org/x/tools v0.0.0-20200811215021-48a8ffc5b207 // indirect
|
|
google.golang.org/api v0.28.0
|
|
google.golang.org/appengine v1.6.6 // indirect
|
|
gopkg.in/ini.v1 v1.42.0 // indirect
|
|
gopkg.in/ns1/ns1-go.v2 v2.0.0-20170502175150-c563826f4cbe
|
|
gopkg.in/sourcemap.v1 v1.0.5 // indirect
|
|
gopkg.in/yaml.v2 v2.3.0
|
|
gopkg.in/yaml.v3 v3.0.0-20200605160147-a5ece683394c // indirect
|
|
)
|