sacrebleu-dns/go.mod
Mael G. 43e8ab8210 PostgreSQL Support
Implementation of PostgreSQL database engine in the DNS server using jackc/pgx (as database/sql driver). 
The user can select what database type he want in the config.ini file under the database section.
2020-12-22 14:56:54 -04:00

27 lines
1,019 B
Modula-2

module github.com/outout14/sacrebleu-dns
go 1.15
require (
github.com/BurntSushi/toml v0.3.1 // indirect
github.com/cockroachdb/apd v1.1.0 // indirect
github.com/go-redis/redis v6.15.9+incompatible
github.com/go-redis/redis/v8 v8.4.2
github.com/go-sql-driver/mysql v1.5.0
github.com/gofrs/uuid v3.2.0+incompatible // indirect
github.com/jackc/fake v0.0.0-20150926172116-812a484cc733 // indirect
github.com/jackc/pgx v3.6.2+incompatible
github.com/kr/pretty v0.1.0 // indirect
github.com/lib/pq v1.3.0 // indirect
github.com/mattn/go-colorable v0.1.8
github.com/miekg/dns v1.1.35
github.com/pkg/errors v0.8.1 // indirect
github.com/shopspring/decimal v0.0.0-20200227202807-02e2044944cc // indirect
github.com/sirupsen/logrus v1.7.0
github.com/smartystreets/goconvey v1.6.4 // indirect
github.com/snowzach/rotatefilehook v0.0.0-20180327172521-2f64f265f58c
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 // indirect
gopkg.in/ini.v1 v1.62.0
gopkg.in/natefinch/lumberjack.v2 v2.0.0 // indirect
)