go.mod 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. module github.com/cloudflare/cfssl
  2. go 1.18
  3. require (
  4. bitbucket.org/liamstask/goose v0.0.0-20150115234039-8488cc47d90c
  5. github.com/cloudflare/backoff v0.0.0-20161212185259-647f3cdfc87a
  6. github.com/cloudflare/redoctober v0.0.0-20211013234631-6a74ccc611f6
  7. github.com/go-sql-driver/mysql v1.6.0
  8. github.com/google/certificate-transparency-go v1.1.4
  9. github.com/jmhodges/clock v1.2.0
  10. github.com/jmoiron/sqlx v1.3.3
  11. github.com/kisielk/sqlstruct v0.0.0-20201105191214-5f3e10d3ab46
  12. github.com/lib/pq v1.10.1
  13. github.com/mattn/go-sqlite3 v1.14.15
  14. github.com/prometheus/client_golang v1.13.0
  15. github.com/stretchr/testify v1.7.0
  16. github.com/zmap/zcrypto v0.0.0-20210511125630-18f1e0152cfc
  17. github.com/zmap/zlint/v3 v3.1.0
  18. golang.org/x/crypto v0.3.0
  19. )
  20. require (
  21. github.com/beorn7/perks v1.0.1 // indirect
  22. github.com/cespare/xxhash/v2 v2.1.2 // indirect
  23. github.com/davecgh/go-spew v1.1.1 // indirect
  24. github.com/getsentry/sentry-go v0.11.0 // indirect
  25. github.com/go-logr/logr v1.2.0 // indirect
  26. github.com/golang/protobuf v1.5.2 // indirect
  27. github.com/kr/text v0.2.0 // indirect
  28. github.com/kylelemons/go-gypsy v1.0.0 // indirect
  29. github.com/matttproud/golang_protobuf_extensions v1.0.2 // indirect
  30. github.com/pmezard/go-difflib v1.0.0 // indirect
  31. github.com/prometheus/client_model v0.2.0 // indirect
  32. github.com/prometheus/common v0.37.0 // indirect
  33. github.com/prometheus/procfs v0.8.0 // indirect
  34. github.com/weppos/publicsuffix-go v0.15.1-0.20210511084619-b1f36a2d6c0b // indirect
  35. github.com/ziutek/mymysql v1.5.4 // indirect
  36. golang.org/x/net v0.7.0 // indirect
  37. golang.org/x/sys v0.5.0 // indirect
  38. golang.org/x/text v0.7.0 // indirect
  39. google.golang.org/protobuf v1.28.1 // indirect
  40. gopkg.in/yaml.v3 v3.0.1 // indirect
  41. k8s.io/klog/v2 v2.80.1 // indirect
  42. )