diff options
| author | Chris Lu <chris.lu@gmail.com> | 2021-08-29 18:41:29 -0700 |
|---|---|---|
| committer | Chris Lu <chris.lu@gmail.com> | 2021-08-29 18:41:29 -0700 |
| commit | 001a472057f01b3ac2d3edb59b3d5fb0a141cddd (patch) | |
| tree | b9bac6f68ab44cb2d0fee5df0db69ba589ff69b0 /go.mod | |
| parent | 05d27741179b199608d0c5c5373bf3c8939c1697 (diff) | |
| download | seaweedfs-001a472057f01b3ac2d3edb59b3d5fb0a141cddd.tar.xz seaweedfs-001a472057f01b3ac2d3edb59b3d5fb0a141cddd.zip | |
cloud mount: remote storage support hdfs
Diffstat (limited to 'go.mod')
| -rw-r--r-- | go.mod | 11 |
1 files changed, 10 insertions, 1 deletions
@@ -19,6 +19,7 @@ require ( github.com/cespare/xxhash v1.1.0 github.com/cespare/xxhash/v2 v2.1.1 // indirect github.com/chrislusf/raft v1.0.7 + github.com/colinmarc/hdfs/v2 v2.2.0 github.com/coreos/go-semver v0.3.0 // indirect github.com/coreos/go-systemd/v22 v22.0.0 // indirect github.com/davecgh/go-spew v1.1.1 // indirect @@ -60,7 +61,7 @@ require ( github.com/hailocab/go-hostpool v0.0.0-20160125115350-e80d13ce29ed // indirect github.com/hashicorp/errwrap v1.0.0 // indirect github.com/hashicorp/go-multierror v1.0.0 // indirect - github.com/hashicorp/go-uuid v1.0.1 // indirect + github.com/hashicorp/go-uuid v1.0.2 // indirect github.com/hashicorp/hcl v1.0.0 // indirect github.com/jcmturner/gofork v1.0.0 // indirect github.com/jinzhu/copier v0.2.8 @@ -177,6 +178,14 @@ require ( modernc.org/token v1.0.0 // indirect ) +require ( + github.com/jcmturner/aescts/v2 v2.0.0 // indirect + github.com/jcmturner/dnsutils/v2 v2.0.0 // indirect + github.com/jcmturner/goidentity/v6 v6.0.1 // indirect + github.com/jcmturner/gokrb5/v8 v8.4.1 // indirect + github.com/jcmturner/rpc/v2 v2.0.2 // indirect +) + // replace github.com/seaweedfs/fuse => /Users/chris/go/src/github.com/seaweedfs/fuse // replace github.com/chrislusf/raft => /Users/chris/go/src/github.com/chrislusf/raft |
