-
Notifications
You must be signed in to change notification settings - Fork 280
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Shengqi Chen <harry-chen@outlook.com>
- Loading branch information
1 parent
95ba958
commit 6d50645
Showing
2 changed files
with
356 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,36 +1,167 @@ | ||
module github.com/tuna/tunasync | ||
|
||
go 1.13 | ||
go 1.22.0 | ||
|
||
toolchain go1.22.9 | ||
|
||
require ( | ||
github.com/BurntSushi/toml v0.3.1 | ||
github.com/alicebob/gopher-json v0.0.0-20200520072559-a9ecdc9d1d3a // indirect | ||
github.com/BurntSushi/toml v1.4.0 | ||
github.com/alicebob/miniredis v2.5.0+incompatible | ||
github.com/anmitsu/go-shlex v0.0.0-20161002113705-648efa622239 | ||
github.com/anmitsu/go-shlex v0.0.0-20200514113438-38f4b401e2be | ||
github.com/boltdb/bolt v1.3.1 | ||
github.com/cilium/ebpf v0.6.2 // indirect | ||
github.com/codeskyblue/go-sh v0.0.0-20190412065543-76bd3d59ff27 | ||
github.com/containerd/cgroups v1.0.2-0.20210729163027-ddda8a174e9a | ||
github.com/dennwc/btrfs v0.0.0-20190517175702-d917b30ff035 | ||
github.com/dgraph-io/badger/v2 v2.2007.2 | ||
github.com/docker/go-units v0.4.0 | ||
github.com/flynn/go-shlex v0.0.0-20150515145356-3f9db97f8568 // indirect | ||
github.com/gin-gonic/gin v1.9.1 | ||
github.com/go-redis/redis/v8 v8.3.0 | ||
github.com/gomodule/redigo v1.8.2 // indirect | ||
github.com/imdario/mergo v0.3.9 | ||
github.com/moby/moby v24.0.9+incompatible | ||
github.com/opencontainers/runtime-spec v1.0.3-0.20210326190908-1c3f411f0417 | ||
github.com/codeskyblue/go-sh v0.0.0-20200712050446-30169cf553fe | ||
github.com/containerd/cgroups v1.1.0 | ||
github.com/dennwc/btrfs v0.0.0-20241002142654-12ae127e0bf6 | ||
github.com/dgraph-io/badger/v2 v2.2007.4 | ||
github.com/docker/go-units v0.5.0 | ||
github.com/gin-gonic/gin v1.10.0 | ||
github.com/go-redis/redis/v8 v8.11.5 | ||
github.com/imdario/mergo v0.3.16 | ||
github.com/moby/moby v27.4.1+incompatible | ||
github.com/opencontainers/runtime-spec v1.2.0 | ||
github.com/pkg/errors v0.9.1 | ||
github.com/pkg/profile v1.4.0 | ||
github.com/pkg/profile v1.7.0 | ||
github.com/ryszard/goskiplist v0.0.0-20150312221310-2dfbae5fcf46 | ||
github.com/sirupsen/logrus v1.8.1 // indirect | ||
github.com/smartystreets/assertions v1.2.0 // indirect | ||
github.com/smartystreets/goconvey v1.6.4 | ||
github.com/syndtr/goleveldb v1.0.0 | ||
github.com/urfave/cli v1.22.3 | ||
github.com/yuin/gopher-lua v0.0.0-20191220021717-ab39c6098bdb // indirect | ||
golang.org/x/sys v0.8.0 | ||
github.com/urfave/cli v1.22.16 | ||
golang.org/x/sys v0.29.0 | ||
gopkg.in/op/go-logging.v1 v1.0.0-20160211212156-b2cb9fa56473 | ||
) | ||
|
||
require ( | ||
github.com/DataDog/zstd v1.5.6 // indirect | ||
github.com/OneOfOne/xxhash v1.2.2 // indirect | ||
github.com/alicebob/gopher-json v0.0.0-20200520072559-a9ecdc9d1d3a // indirect | ||
github.com/armon/consul-api v0.0.0-20180202201655-eb2c6b5be1b6 // indirect | ||
github.com/bytedance/sonic v1.12.7 // indirect | ||
github.com/bytedance/sonic/loader v0.2.2 // indirect | ||
github.com/cespare/xxhash v1.1.0 // indirect | ||
github.com/cespare/xxhash/v2 v2.3.0 // indirect | ||
github.com/chenzhuoyu/base64x v0.0.0-20230717121745-296ad89f973d // indirect | ||
github.com/chenzhuoyu/iasm v0.9.0 // indirect | ||
github.com/chzyer/logex v1.2.1 // indirect | ||
github.com/chzyer/readline v1.5.1 // indirect | ||
github.com/chzyer/test v1.0.0 // indirect | ||
github.com/cilium/ebpf v0.17.1 // indirect | ||
github.com/cloudwego/base64x v0.1.4 // indirect | ||
github.com/cloudwego/iasm v0.2.0 // indirect | ||
github.com/codegangsta/inject v0.0.0-20150114235600-33e0aa1cb7c0 // indirect | ||
github.com/coreos/etcd v3.3.10+incompatible // indirect | ||
github.com/coreos/go-etcd v2.0.0+incompatible // indirect | ||
github.com/coreos/go-semver v0.2.0 // indirect | ||
github.com/coreos/go-systemd/v22 v22.5.0 // indirect | ||
github.com/cpuguy83/go-md2man v1.0.10 // indirect | ||
github.com/cpuguy83/go-md2man/v2 v2.0.6 // indirect | ||
github.com/creack/pty v1.1.9 // indirect | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/dennwc/ioctl v1.0.0 // indirect | ||
github.com/dgraph-io/ristretto v0.2.0 // indirect | ||
github.com/dgryski/go-farm v0.0.0-20240924180020-3414d57e47da // indirect | ||
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect | ||
github.com/dustin/go-humanize v1.0.1 // indirect | ||
github.com/felixge/fgprof v0.9.5 // indirect | ||
github.com/flynn/go-shlex v0.0.0-20150515145356-3f9db97f8568 // indirect | ||
github.com/frankban/quicktest v1.14.5 // indirect | ||
github.com/fsnotify/fsnotify v1.4.9 // indirect | ||
github.com/gabriel-vasile/mimetype v1.4.8 // indirect | ||
github.com/gin-contrib/sse v1.0.0 // indirect | ||
github.com/go-logr/logr v1.4.2 // indirect | ||
github.com/go-logr/stdr v1.2.2 // indirect | ||
github.com/go-playground/assert/v2 v2.2.0 // indirect | ||
github.com/go-playground/locales v0.14.1 // indirect | ||
github.com/go-playground/universal-translator v0.18.1 // indirect | ||
github.com/go-playground/validator/v10 v10.23.0 // indirect | ||
github.com/go-quicktest/qt v1.101.0 // indirect | ||
github.com/go-task/slim-sprig v0.0.0-20210107165309-348f09dbbbc0 // indirect | ||
github.com/goccy/go-json v0.10.4 // indirect | ||
github.com/godbus/dbus/v5 v5.1.0 // indirect | ||
github.com/gogo/protobuf v1.3.2 // indirect | ||
github.com/golang/protobuf v1.5.4 // indirect | ||
github.com/golang/snappy v0.0.4 // indirect | ||
github.com/gomodule/redigo v1.8.2 // indirect | ||
github.com/google/go-cmp v0.6.0 // indirect | ||
github.com/google/gofuzz v1.0.0 // indirect | ||
github.com/google/pprof v0.0.0-20241210010833-40e02aabc2ad // indirect | ||
github.com/gopherjs/gopherjs v0.0.0-20181017120253-0766667cb4d1 // indirect | ||
github.com/hashicorp/hcl v1.0.0 // indirect | ||
github.com/hpcloud/tail v1.0.0 // indirect | ||
github.com/ianlancetaylor/demangle v0.0.0-20240312041847-bd984b5ce465 // indirect | ||
github.com/inconshreveable/mousetrap v1.0.0 // indirect | ||
github.com/josharian/native v1.1.0 // indirect | ||
github.com/jsimonetti/rtnetlink/v2 v2.0.1 // indirect | ||
github.com/json-iterator/go v1.1.12 // indirect | ||
github.com/jtolds/gls v4.20.0+incompatible // indirect | ||
github.com/kisielk/errcheck v1.5.0 // indirect | ||
github.com/kisielk/gotool v1.0.0 // indirect | ||
github.com/klauspost/compress v1.17.11 // indirect | ||
github.com/klauspost/cpuid/v2 v2.2.9 // indirect | ||
github.com/knz/go-libedit v1.10.1 // indirect | ||
github.com/kr/pretty v0.3.1 // indirect | ||
github.com/kr/pty v1.1.1 // indirect | ||
github.com/kr/text v0.2.0 // indirect | ||
github.com/leodido/go-urn v1.4.0 // indirect | ||
github.com/magiconair/properties v1.8.0 // indirect | ||
github.com/mattn/go-isatty v0.0.20 // indirect | ||
github.com/mdlayher/netlink v1.7.2 // indirect | ||
github.com/mdlayher/socket v0.4.1 // indirect | ||
github.com/mitchellh/go-homedir v1.1.0 // indirect | ||
github.com/mitchellh/mapstructure v1.1.2 // indirect | ||
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect | ||
github.com/modern-go/reflect2 v1.0.2 // indirect | ||
github.com/nxadm/tail v1.4.8 // indirect | ||
github.com/onsi/ginkgo v1.16.5 // indirect | ||
github.com/onsi/ginkgo/v2 v2.0.0 // indirect | ||
github.com/onsi/gomega v1.18.1 // indirect | ||
github.com/pelletier/go-toml v1.2.0 // indirect | ||
github.com/pelletier/go-toml/v2 v2.2.3 // indirect | ||
github.com/pkg/diff v0.0.0-20210226163009-20ebb0f2a09e // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/rogpeppe/go-internal v1.13.1 // indirect | ||
github.com/russross/blackfriday v1.5.2 // indirect | ||
github.com/russross/blackfriday/v2 v2.1.0 // indirect | ||
github.com/shurcooL/sanitized_anchor_name v1.0.0 // indirect | ||
github.com/sirupsen/logrus v1.9.3 // indirect | ||
github.com/smartystreets/assertions v1.2.0 // indirect | ||
github.com/spaolacci/murmur3 v1.1.0 // indirect | ||
github.com/spf13/afero v1.1.2 // indirect | ||
github.com/spf13/cast v1.3.0 // indirect | ||
github.com/spf13/cobra v0.0.5 // indirect | ||
github.com/spf13/jwalterweatherman v1.0.0 // indirect | ||
github.com/spf13/pflag v1.0.3 // indirect | ||
github.com/spf13/viper v1.3.2 // indirect | ||
github.com/stretchr/objx v0.5.2 // indirect | ||
github.com/stretchr/testify v1.10.0 // indirect | ||
github.com/twitchyliquid64/golang-asm v0.15.1 // indirect | ||
github.com/ugorji/go/codec v1.2.12 // indirect | ||
github.com/xordataexchange/crypt v0.0.3-0.20170626215501-b2862e3d0a77 // indirect | ||
github.com/yuin/goldmark v1.4.13 // indirect | ||
github.com/yuin/gopher-lua v0.0.0-20191220021717-ab39c6098bdb // indirect | ||
go.opentelemetry.io/auto/sdk v1.1.0 // indirect | ||
go.opentelemetry.io/otel v1.33.0 // indirect | ||
go.opentelemetry.io/otel/metric v1.33.0 // indirect | ||
go.opentelemetry.io/otel/trace v1.33.0 // indirect | ||
go.uber.org/goleak v1.1.12 // indirect | ||
golang.org/x/arch v0.13.0 // indirect | ||
golang.org/x/crypto v0.32.0 // indirect | ||
golang.org/x/exp v0.0.0-20230224173230-c95f2b4c22f2 // indirect | ||
golang.org/x/lint v0.0.0-20190930215403-16217165b5de // indirect | ||
golang.org/x/mod v0.18.0 // indirect | ||
golang.org/x/net v0.34.0 // indirect | ||
golang.org/x/sync v0.10.0 // indirect | ||
golang.org/x/telemetry v0.0.0-20240521205824-bda55230c457 // indirect | ||
golang.org/x/term v0.28.0 // indirect | ||
golang.org/x/text v0.21.0 // indirect | ||
golang.org/x/tools v0.22.0 // indirect | ||
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect | ||
google.golang.org/protobuf v1.36.2 // indirect | ||
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect | ||
gopkg.in/errgo.v2 v2.1.0 // indirect | ||
gopkg.in/fsnotify.v1 v1.4.7 // indirect | ||
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect | ||
gopkg.in/yaml.v2 v2.4.0 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
gotest.tools/v3 v3.0.3 // indirect | ||
nullprogram.com/x/optparse v1.0.0 // indirect | ||
rsc.io/pdf v0.1.1 // indirect | ||
) |
Oops, something went wrong.