Skip to content

Commit

Permalink
Use package slices instead of golang.org/x/exp/slices
Browse files Browse the repository at this point in the history
  • Loading branch information
nwt committed Nov 8, 2023
1 parent 70e61d5 commit 00079e9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/zed-wasm/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ go 1.21
require (
github.com/brimdata/zed v1.6.0
github.com/teamortix/golang-wasm/wasm v0.0.0-20230308073412-915550b3b9ac
golang.org/x/exp v0.0.0-20230315142452-642cacee5cc0
)

require (
Expand Down Expand Up @@ -39,6 +38,7 @@ require (
go.uber.org/atomic v1.7.0 // indirect
go.uber.org/multierr v1.8.0 // indirect
go.uber.org/zap v1.23.0 // indirect
golang.org/x/exp v0.0.0-20230315142452-642cacee5cc0 // indirect
golang.org/x/mod v0.6.0 // indirect
golang.org/x/net v0.7.0 // indirect
golang.org/x/sync v0.0.0-20220819030929-7fc1605a5dde // indirect
Expand Down
2 changes: 1 addition & 1 deletion packages/zed-wasm/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import (
"context"
"errors"
"io"
"slices"
"strings"
"syscall/js"

Expand All @@ -16,7 +17,6 @@ import (
"github.com/brimdata/zed/zio"
"github.com/brimdata/zed/zio/anyio"
"github.com/teamortix/golang-wasm/wasm"
"golang.org/x/exp/slices"
)

func main() {
Expand Down

0 comments on commit 00079e9

Please sign in to comment.