go.mod 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. module seaweedfs-rdma-sidecar
  2. go 1.24
  3. require (
  4. github.com/seaweedfs/seaweedfs v0.0.0-00010101000000-000000000000
  5. github.com/sirupsen/logrus v1.9.3
  6. github.com/spf13/cobra v1.8.0
  7. github.com/vmihailenco/msgpack/v5 v5.4.1
  8. )
  9. require (
  10. github.com/beorn7/perks v1.0.1 // indirect
  11. github.com/cespare/xxhash/v2 v2.3.0 // indirect
  12. github.com/cognusion/imaging v1.0.2 // indirect
  13. github.com/fsnotify/fsnotify v1.9.0 // indirect
  14. github.com/go-viper/mapstructure/v2 v2.4.0 // indirect
  15. github.com/inconshreveable/mousetrap v1.1.0 // indirect
  16. github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
  17. github.com/pelletier/go-toml/v2 v2.2.4 // indirect
  18. github.com/prometheus/client_golang v1.23.0 // indirect
  19. github.com/prometheus/client_model v0.6.2 // indirect
  20. github.com/prometheus/common v0.65.0 // indirect
  21. github.com/prometheus/procfs v0.17.0 // indirect
  22. github.com/sagikazarmark/locafero v0.7.0 // indirect
  23. github.com/seaweedfs/goexif v1.0.3 // indirect
  24. github.com/sourcegraph/conc v0.3.0 // indirect
  25. github.com/spf13/afero v1.12.0 // indirect
  26. github.com/spf13/cast v1.7.1 // indirect
  27. github.com/spf13/pflag v1.0.6 // indirect
  28. github.com/spf13/viper v1.20.1 // indirect
  29. github.com/subosito/gotenv v1.6.0 // indirect
  30. github.com/vmihailenco/tagparser/v2 v2.0.0 // indirect
  31. go.uber.org/multierr v1.11.0 // indirect
  32. golang.org/x/image v0.30.0 // indirect
  33. golang.org/x/net v0.43.0 // indirect
  34. golang.org/x/sys v0.35.0 // indirect
  35. golang.org/x/text v0.28.0 // indirect
  36. google.golang.org/genproto/googleapis/rpc v0.0.0-20250728155136-f173205681a0 // indirect
  37. google.golang.org/grpc v1.74.2 // indirect
  38. google.golang.org/protobuf v1.36.7 // indirect
  39. gopkg.in/yaml.v3 v3.0.1 // indirect
  40. )
  41. // For local development, this replace directive is required to build the sidecar
  42. // against the parent SeaweedFS module in this monorepo.
  43. //
  44. // To build this module, ensure the main SeaweedFS repository is checked out
  45. // as a sibling directory to this `seaweedfs-rdma-sidecar` directory.
  46. replace github.com/seaweedfs/seaweedfs => ../