-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
72 lines (65 loc) · 2.3 KB
/
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
module github.com/cristalhq/benches
go 1.21.4
// bencode
require (
github.com/IncSW/go-bencode v0.2.2
github.com/anacrolix/torrent v1.53.3
github.com/cristalhq/bencode v0.4.0
github.com/cuberat/go-bencode v1.0.0
github.com/jackpal/bencode-go v1.0.2
github.com/lajide/bencode v0.0.0-20190629152703-fb09cf4e9a4a
github.com/lwch/bencode v1.0.0
github.com/marksamman/bencode v0.0.0-20150821143521-dc84f26e086e
github.com/nabilanam/bencode v0.0.0-20190329141800-cde546b1530b
github.com/owenliang/dht v0.0.0-20180118074908-44baeeba7b13
github.com/stints/bencode v0.0.0-20160226205624-0ba65bd80165
github.com/tumdum/bencoding v0.0.0-20160911135503-fcfcb8bd55e9
github.com/zeebo/bencode v1.0.0
)
// bson
require (
github.com/cristalhq/bson v0.0.7
github.com/globalsign/mgo v0.0.0-20181015135952-eeefdecb41b8
github.com/go-micro/go-bson v1.0.0
go.mongodb.org/mongo-driver v1.13.1
gopkg.in/mgo.v2 v2.0.0-20190816093944-a6b53ec6cb22
)
// jwt
require (
github.com/cristalhq/jwt/v4 v4.0.2
github.com/golang-jwt/jwt v3.2.2+incompatible
github.com/lestrrat-go/jwx v1.2.28
github.com/pascaldekloe/jwt v1.12.0
)
// natsort
require (
github.com/cristalhq/natsort v0.1.1
github.com/dangogh/naturally v0.1.1
github.com/evie404/natsort v0.0.0-20180124032556-f194e6bd5b0c
github.com/facette/natsort v0.0.0-20181210072756-2cd4dd1e2dcb
github.com/immortal/natcasesort v0.0.0-20180922190600-53ad4be8bc1a
github.com/maruel/natural v1.1.1
github.com/miraclesu/natsort v0.0.0-20160121124727-836e59d384de
)
// qrcode
require (
github.com/boombuler/barcode v1.0.1
github.com/cristalhq/qrcode v0.1.0
github.com/skip2/go-qrcode v0.0.0-20200617195104-da1b6568686e
github.com/yeqown/go-qrcode v1.5.10
rsc.io/qr v0.2.0
)
require (
github.com/anacrolix/missinggo v1.3.0 // indirect
github.com/anacrolix/missinggo/v2 v2.7.2-0.20230527121029-a582b4f397b9 // indirect
github.com/fogleman/gg v1.3.0 // indirect
github.com/goccy/go-json v0.10.2 // indirect
github.com/golang/freetype v0.0.0-20170609003504-e2365dfdc4a0 // indirect
github.com/huandu/xstrings v1.3.2 // indirect
github.com/lestrrat-go/option v1.0.1 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/smartystreets/goconvey v1.8.1 // indirect
github.com/yeqown/reedsolomon v1.0.0 // indirect
golang.org/x/image v0.13.0 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
)