go.mod 1.3 KB

12345678910111213141516171819202122232425262728293031323334
  1. module smart_tunnel_edge
  2. go 1.17
  3. require (
  4. github.com/druidcaesa/gotool v0.0.0-20220613023420-645c641d1304
  5. github.com/eclipse/paho.mqtt.golang v1.5.0
  6. github.com/google/uuid v1.2.0
  7. github.com/lestrrat/go-file-rotatelogs v0.0.0-20180223000712-d3151e2a480f
  8. github.com/robfig/cron v1.2.0
  9. github.com/sirupsen/logrus v1.9.3
  10. github.com/tarm/serial v0.0.0-20180830185346-98f6abe2eb07
  11. github.com/valyala/bytebufferpool v1.0.0
  12. gopkg.in/yaml.v3 v3.0.1
  13. )
  14. require (
  15. github.com/fastly/go-utils v0.0.0-20180712184237-d95a45783239 // indirect
  16. github.com/fogleman/gg v1.3.0 // indirect
  17. github.com/golang/freetype v0.0.0-20170609003504-e2365dfdc4a0 // indirect
  18. github.com/gorilla/websocket v1.5.3 // indirect
  19. github.com/jehiah/go-strftime v0.0.0-20171201141054-1d33003b3869 // indirect
  20. github.com/jonboulle/clockwork v0.5.0 // indirect
  21. github.com/lestrrat/go-envload v0.0.0-20180220120943-6ed08b54a570 // indirect
  22. github.com/lestrrat/go-strftime v0.0.0-20180220042222-ba3bf9c1d042 // indirect
  23. github.com/pkg/errors v0.9.1 // indirect
  24. github.com/stretchr/testify v1.9.0 // indirect
  25. github.com/tebeka/strftime v0.1.5 // indirect
  26. golang.org/x/crypto v0.25.0 // indirect
  27. golang.org/x/image v0.0.0-20210628002857-a66eb6448b8d // indirect
  28. golang.org/x/net v0.27.0 // indirect
  29. golang.org/x/sync v0.7.0 // indirect
  30. golang.org/x/sys v0.22.0 // indirect
  31. )