-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo.mod
30 lines (27 loc) · 926 Bytes
/
go.mod
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
module github.com/AlchemillaHQ/simple-turn
go 1.22.1
require (
github.com/common-nighthawk/go-figure v0.0.0-20210622060536-734e95fb86be
github.com/pion/logging v0.2.2
github.com/pion/stun v0.6.1
github.com/pion/turn/v4 v4.0.0
github.com/sirupsen/logrus v1.9.3
golang.org/x/net v0.27.0
golang.org/x/sys v0.25.0
gorm.io/driver/sqlite v1.5.6
gorm.io/gorm v1.25.12
)
require (
github.com/jinzhu/inflection v1.0.0 // indirect
github.com/jinzhu/now v1.1.5 // indirect
github.com/mattn/go-sqlite3 v1.14.23 // indirect
github.com/pion/dtls/v2 v2.2.7 // indirect
github.com/pion/dtls/v3 v3.0.2 // indirect
github.com/pion/randutil v0.1.0 // indirect
github.com/pion/stun/v3 v3.0.0 // indirect
github.com/pion/transport/v2 v2.2.1 // indirect
github.com/pion/transport/v3 v3.0.7 // indirect
github.com/wlynxg/anet v0.0.4 // indirect
golang.org/x/crypto v0.27.0 // indirect
golang.org/x/text v0.18.0 // indirect
)