go.mod 941 B

1234567891011121314151617181920212223242526
  1. module github.com/caddyserver/caddy
  2. go 1.13
  3. require (
  4. github.com/dustin/go-humanize v1.0.0
  5. github.com/flynn/go-shlex v0.0.0-20150515145356-3f9db97f8568
  6. github.com/go-acme/lego/v3 v3.2.0
  7. github.com/google/uuid v1.1.1
  8. github.com/gorilla/websocket v1.4.0
  9. github.com/hashicorp/go-syslog v1.0.0
  10. github.com/jimstudt/http-authentication v0.0.0-20140401203705-3eca13d6893a
  11. github.com/klauspost/cpuid v1.2.0
  12. github.com/kylelemons/godebug v0.0.0-20170820004349-d65d576e9348 // indirect
  13. github.com/lucas-clemente/quic-go v0.13.1
  14. github.com/mholt/certmagic v0.8.3
  15. github.com/naoina/go-stringutil v0.1.0 // indirect
  16. github.com/naoina/toml v0.1.1
  17. github.com/russross/blackfriday v0.0.0-20170610170232-067529f716f4
  18. golang.org/x/net v0.0.0-20191027093000-83d349e8ac1a
  19. golang.org/x/sys v0.0.0-20191026070338-33540a1f6037 // indirect
  20. gopkg.in/mcuadros/go-syslog.v2 v2.2.1
  21. gopkg.in/natefinch/lumberjack.v2 v2.0.0
  22. gopkg.in/yaml.v2 v2.2.2
  23. )