go.mod 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. module github.com/pion/webrtc/v3
  2. go 1.17
  3. require (
  4. github.com/pion/datachannel v1.5.5
  5. github.com/pion/dtls/v2 v2.2.7
  6. github.com/pion/ice/v2 v2.3.24
  7. github.com/pion/interceptor v0.1.25
  8. github.com/pion/logging v0.2.2
  9. github.com/pion/randutil v0.1.0
  10. github.com/pion/rtcp v1.2.12
  11. github.com/pion/rtp v1.8.5
  12. github.com/pion/sctp v1.8.16
  13. github.com/pion/sdp/v3 v3.0.9
  14. github.com/pion/srtp/v2 v2.0.18
  15. github.com/pion/stun v0.6.1
  16. github.com/pion/transport/v2 v2.2.4
  17. github.com/sclevine/agouti v3.0.0+incompatible
  18. github.com/stretchr/testify v1.9.0
  19. golang.org/x/net v0.22.0
  20. )
  21. require (
  22. github.com/davecgh/go-spew v1.1.1 // indirect
  23. github.com/google/uuid v1.3.1 // indirect
  24. github.com/onsi/ginkgo v1.16.5 // indirect
  25. github.com/onsi/gomega v1.17.0 // indirect
  26. github.com/pion/mdns v0.0.12 // indirect
  27. github.com/pion/turn/v2 v2.1.3 // indirect
  28. github.com/pmezard/go-difflib v1.0.0 // indirect
  29. golang.org/x/crypto v0.21.0 // indirect
  30. golang.org/x/sys v0.18.0 // indirect
  31. gopkg.in/yaml.v3 v3.0.1 // indirect
  32. )
  33. // SCTP ZeroChecksum implementation has a interoperability bug
  34. // 3.2.28 can only work against itself, not other versions of webrtc
  35. retract v3.2.28