Skip to content

Commit

Permalink
Update to Go SDK 2.1.1 (#310)
Browse files Browse the repository at this point in the history
  • Loading branch information
davidzhao authored Apr 20, 2024
1 parent 5419a36 commit 59a3f49
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 110 deletions.
4 changes: 2 additions & 2 deletions cmd/livekit-cli/utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ import (
"path/filepath"
"strings"

"github.com/ggwhite/go-masker"
"github.com/urfave/cli/v2"

"github.com/livekit/livekit-cli/pkg/config"
Expand Down Expand Up @@ -110,7 +109,8 @@ func loadProjectDetails(c *cli.Context, opts ...loadOption) (*config.ProjectConf
fmt.Printf("URL: %s, api-key: %s, api-secret: %s\n",
pc.URL,
pc.APIKey,
masker.ID(pc.APISecret))
"************",
)
}

}
Expand Down
24 changes: 11 additions & 13 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -4,21 +4,20 @@ go 1.21

require (
github.com/frostbyte73/core v0.0.10
github.com/ggwhite/go-masker v1.1.0
github.com/go-logr/logr v1.4.1
github.com/livekit/protocol v1.12.0
github.com/livekit/server-sdk-go/v2 v2.0.6
github.com/livekit/server-sdk-go/v2 v2.1.1
github.com/manifoldco/promptui v0.9.0
github.com/olekukonko/tablewriter v0.0.5
github.com/pion/rtcp v1.2.14
github.com/pion/rtp v1.8.5
github.com/pion/webrtc/v3 v3.2.31
github.com/pion/webrtc/v3 v3.2.38
github.com/pkg/browser v0.0.0-20240102092130-5ac0b6a4141c
github.com/pkg/errors v0.9.1
github.com/stretchr/testify v1.9.0
github.com/urfave/cli/v2 v2.27.1
go.uber.org/atomic v1.11.0
golang.org/x/sync v0.6.0
golang.org/x/sync v0.7.0
golang.org/x/time v0.5.0
google.golang.org/protobuf v1.33.0
gopkg.in/yaml.v3 v3.0.1
Expand All @@ -38,7 +37,6 @@ require (
github.com/gammazero/deque v0.2.1 // indirect
github.com/go-jose/go-jose/v3 v3.0.3 // indirect
github.com/go-logr/stdr v1.2.2 // indirect
github.com/golang/protobuf v1.5.3 // indirect
github.com/google/uuid v1.6.0 // indirect
github.com/gorilla/websocket v1.5.1 // indirect
github.com/jxskiss/base62 v1.1.0 // indirect
Expand All @@ -55,12 +53,12 @@ require (
github.com/nats-io/nuid v1.0.1 // indirect
github.com/pion/datachannel v1.5.5 // indirect
github.com/pion/dtls/v2 v2.2.10 // indirect
github.com/pion/ice/v2 v2.3.13 // indirect
github.com/pion/interceptor v0.1.25 // indirect
github.com/pion/ice/v2 v2.3.15 // indirect
github.com/pion/interceptor v0.1.27 // indirect
github.com/pion/logging v0.2.2 // indirect
github.com/pion/mdns v0.0.12 // indirect
github.com/pion/randutil v0.1.0 // indirect
github.com/pion/sctp v1.8.13 // indirect
github.com/pion/sctp v1.8.16 // indirect
github.com/pion/sdp/v3 v3.0.9 // indirect
github.com/pion/srtp/v2 v2.0.18 // indirect
github.com/pion/stun v0.6.1 // indirect
Expand All @@ -79,11 +77,11 @@ require (
github.com/zeebo/xxh3 v1.0.2 // indirect
go.uber.org/multierr v1.11.0 // indirect
go.uber.org/zap v1.27.0 // indirect
golang.org/x/crypto v0.20.0 // indirect
golang.org/x/exp v0.0.0-20240222234643-814bf88cf225 // indirect
golang.org/x/net v0.21.0 // indirect
golang.org/x/sys v0.17.0 // indirect
golang.org/x/crypto v0.22.0 // indirect
golang.org/x/exp v0.0.0-20240325151524-a685a6edb6d8 // indirect
golang.org/x/net v0.24.0 // indirect
golang.org/x/sys v0.19.0 // indirect
golang.org/x/text v0.14.0 // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20240228224816-df926f6c8641 // indirect
google.golang.org/grpc v1.62.0 // indirect
google.golang.org/grpc v1.63.2 // indirect
)
Loading

0 comments on commit 59a3f49

Please sign in to comment.