File tree 8 files changed +6
-15
lines changed
8 files changed +6
-15
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,6 @@ require (
8
8
github.com/gabriel-vasile/mimetype v1.4.5
9
9
github.com/google/uuid v1.6.0
10
10
github.com/rs/zerolog v1.33.0
11
- github.com/sasha-s/go-deadlock v0.3.5
12
11
github.com/stretchr/testify v1.9.0
13
12
go.mau.fi/util v0.7.1-0.20240913091524-7617daa66719
14
13
golang.org/x/crypto v0.27.0
Original file line number Diff line number Diff line change @@ -48,8 +48,6 @@ github.com/rs/xid v1.6.0 h1:fV591PaemRlL6JfRxGDEPl69wICngIQ3shQtzfy2gxU=
48
48
github.com/rs/xid v1.6.0 /go.mod h1:7XoLgs4eV+QndskICGsho+ADou8ySMSjJKDIan90Nz0 =
49
49
github.com/rs/zerolog v1.33.0 h1:1cU2KZkvPxNyfgEmhHAz/1A9Bz+llsdYzklWFzgp0r8 =
50
50
github.com/rs/zerolog v1.33.0 /go.mod h1:/7mN4D5sKwJLZQ2b/znpjC3/GQWY/xaDXUM0kKWRHss =
51
- github.com/sasha-s/go-deadlock v0.3.5 h1:tNCOEEDG6tBqrNDOX35j/7hL5FcFViG6awUGROb2NsU =
52
- github.com/sasha-s/go-deadlock v0.3.5 /go.mod h1:bugP6EGbdGYObIlx7pUZtWqlvo8k9H6vCBBsiChJQ5U =
53
51
github.com/skip2/go-qrcode v0.0.0-20200617195104-da1b6568686e h1:MRM5ITcdelLK2j1vwZ3Je0FKVCfqOLp5zO6trqMLYs0 =
54
52
github.com/skip2/go-qrcode v0.0.0-20200617195104-da1b6568686e /go.mod h1:XV66xRDqSt+GTGFMVlhk3ULuV0y9ZmzeVGR4mloJI3M =
55
53
github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsTg =
Original file line number Diff line number Diff line change @@ -19,11 +19,10 @@ package connector
19
19
import (
20
20
"context"
21
21
"errors"
22
+ "sync"
22
23
"sync/atomic"
23
24
"time"
24
25
25
- sync "github.com/sasha-s/go-deadlock"
26
-
27
26
"github.com/rs/zerolog"
28
27
"go.mau.fi/util/exsync"
29
28
"maunium.net/go/mautrix/bridge/status"
Original file line number Diff line number Diff line change @@ -20,8 +20,7 @@ import (
20
20
"encoding/json"
21
21
"fmt"
22
22
"slices"
23
-
24
- sync "github.com/sasha-s/go-deadlock"
23
+ "sync"
25
24
26
25
"go.mau.fi/util/jsontime"
27
26
"maunium.net/go/mautrix/bridgev2/database"
Original file line number Diff line number Diff line change @@ -9,11 +9,10 @@ import (
9
9
"net"
10
10
"net/http"
11
11
"net/url"
12
+ "sync"
12
13
"sync/atomic"
13
14
"time"
14
15
15
- sync "github.com/sasha-s/go-deadlock"
16
-
17
16
"github.com/google/uuid"
18
17
"github.com/rs/zerolog"
19
18
Original file line number Diff line number Diff line change @@ -10,11 +10,10 @@ import (
10
10
"fmt"
11
11
"io"
12
12
"net/http"
13
+ "sync"
13
14
"sync/atomic"
14
15
"time"
15
16
16
- sync "github.com/sasha-s/go-deadlock"
17
-
18
17
"github.com/google/uuid"
19
18
"github.com/rs/zerolog"
20
19
"go.mau.fi/util/pblite"
Original file line number Diff line number Diff line change @@ -32,10 +32,9 @@ import (
32
32
"slices"
33
33
"strconv"
34
34
"strings"
35
+ "sync"
35
36
"time"
36
37
37
- sync "github.com/sasha-s/go-deadlock"
38
-
39
38
"github.com/google/uuid"
40
39
"github.com/rs/zerolog"
41
40
"go.mau.fi/util/exslices"
Original file line number Diff line number Diff line change @@ -3,10 +3,9 @@ package libgm
3
3
import (
4
4
"encoding/base64"
5
5
"fmt"
6
+ "sync"
6
7
"time"
7
8
8
- sync "github.com/sasha-s/go-deadlock"
9
-
10
9
"github.com/google/uuid"
11
10
"github.com/rs/zerolog"
12
11
"golang.org/x/exp/slices"
You can’t perform that action at this time.
0 commit comments