diff options
Diffstat (limited to 'seaweedfs-rdma-sidecar/go.mod')
| -rw-r--r-- | seaweedfs-rdma-sidecar/go.mod | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/seaweedfs-rdma-sidecar/go.mod b/seaweedfs-rdma-sidecar/go.mod new file mode 100644 index 000000000..0dcefd491 --- /dev/null +++ b/seaweedfs-rdma-sidecar/go.mod @@ -0,0 +1,50 @@ +module seaweedfs-rdma-sidecar + +go 1.24 + +require ( + github.com/seaweedfs/seaweedfs v0.0.0-00010101000000-000000000000 + github.com/sirupsen/logrus v1.9.3 + github.com/spf13/cobra v1.8.0 + github.com/vmihailenco/msgpack/v5 v5.4.1 +) + +require ( + github.com/beorn7/perks v1.0.1 // indirect + github.com/cespare/xxhash/v2 v2.3.0 // indirect + github.com/cognusion/imaging v1.0.2 // indirect + github.com/fsnotify/fsnotify v1.9.0 // indirect + github.com/go-viper/mapstructure/v2 v2.3.0 // indirect + github.com/inconshreveable/mousetrap v1.1.0 // indirect + github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect + github.com/pelletier/go-toml/v2 v2.2.4 // indirect + github.com/prometheus/client_golang v1.23.0 // indirect + github.com/prometheus/client_model v0.6.2 // indirect + github.com/prometheus/common v0.65.0 // indirect + github.com/prometheus/procfs v0.17.0 // indirect + github.com/sagikazarmark/locafero v0.7.0 // indirect + github.com/seaweedfs/goexif v1.0.3 // indirect + github.com/sourcegraph/conc v0.3.0 // indirect + github.com/spf13/afero v1.12.0 // indirect + github.com/spf13/cast v1.7.1 // indirect + github.com/spf13/pflag v1.0.6 // indirect + github.com/spf13/viper v1.20.1 // indirect + github.com/subosito/gotenv v1.6.0 // indirect + github.com/vmihailenco/tagparser/v2 v2.0.0 // indirect + go.uber.org/multierr v1.11.0 // indirect + golang.org/x/image v0.30.0 // indirect + golang.org/x/net v0.43.0 // indirect + golang.org/x/sys v0.35.0 // indirect + golang.org/x/text v0.28.0 // indirect + google.golang.org/genproto/googleapis/rpc v0.0.0-20250728155136-f173205681a0 // indirect + google.golang.org/grpc v1.74.2 // indirect + google.golang.org/protobuf v1.36.7 // indirect + gopkg.in/yaml.v3 v3.0.1 // indirect +) + +// For local development, this replace directive is required to build the sidecar +// against the parent SeaweedFS module in this monorepo. +// +// To build this module, ensure the main SeaweedFS repository is checked out +// as a sibling directory to this `seaweedfs-rdma-sidecar` directory. +replace github.com/seaweedfs/seaweedfs => ../ |
