Skip to content

Commit

Permalink
go.mod: github.com/mistifyio/go-zfs/v3 v3.0.0-20220217145925-d014733a…
Browse files Browse the repository at this point in the history
…5309

Now go-zfs has go.mod .

Signed-off-by: Akihiro Suda <akihiro.suda.cz@hco.ntt.co.jp>
  • Loading branch information
AkihiroSuda committed Mar 18, 2022
1 parent b0bc5dc commit d904e63
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ go 1.16
require (
github.com/containerd/containerd v1.6.1
github.com/containerd/continuity v0.2.2
github.com/mistifyio/go-zfs v2.1.2-0.20190413222219-f784269be439+incompatible
github.com/mistifyio/go-zfs/v3 v3.0.0-20220217145925-d014733a5309
)
2 changes: 2 additions & 0 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -574,6 +574,8 @@ github.com/miekg/dns v1.0.14/go.mod h1:W1PPwlIAgtquWBMBEV9nkV9Cazfe8ScdGz/Lj7v3N
github.com/miekg/pkcs11 v1.0.3/go.mod h1:XsNlhZGX73bx86s2hdc/FuaLm2CPZJemRLMA+WTFxgs=
github.com/mistifyio/go-zfs v2.1.2-0.20190413222219-f784269be439+incompatible h1:aKW/4cBs+yK6gpqU3K/oIwk9Q/XICqd3zOX/UFuvqmk=
github.com/mistifyio/go-zfs v2.1.2-0.20190413222219-f784269be439+incompatible/go.mod h1:8AuVvqP/mXw1px98n46wfvcGfQ4ci2FwoAjKYxuo3Z4=
github.com/mistifyio/go-zfs/v3 v3.0.0-20220217145925-d014733a5309 h1:1sjvgWVF0rplxJA8d+Tp1H4PR252WfEaSVPlMGpAALU=
github.com/mistifyio/go-zfs/v3 v3.0.0-20220217145925-d014733a5309/go.mod h1:CzVgeB0RvF2EGzQnytKVvVSDwmKJXxkOTUGbNrTja/k=
github.com/mitchellh/cli v1.0.0/go.mod h1:hNIlj7HEI86fIcpObd7a0FcrxTWetlwJDGcceTlRvqc=
github.com/mitchellh/go-homedir v1.0.0/go.mod h1:SfyaCUpYCn1Vlf4IUYiD9fPX4A5wJrkLzIz1N1q0pr0=
github.com/mitchellh/go-homedir v1.1.0/go.mod h1:SfyaCUpYCn1Vlf4IUYiD9fPX4A5wJrkLzIz1N1q0pr0=
Expand Down
4 changes: 2 additions & 2 deletions zfs.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
//go:build linux || freebsd
// +build linux freebsd

/*
Expand Down Expand Up @@ -28,8 +29,7 @@ import (
"github.com/containerd/containerd/mount"
"github.com/containerd/containerd/snapshots"
"github.com/containerd/containerd/snapshots/storage"

zfs "github.com/mistifyio/go-zfs"
"github.com/mistifyio/go-zfs/v3"
)

const (
Expand Down
4 changes: 2 additions & 2 deletions zfs_test.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
//go:build linux
// +build linux

/*
Expand Down Expand Up @@ -34,8 +35,7 @@ import (
"github.com/containerd/containerd/snapshots/testsuite"
"github.com/containerd/continuity/fs/fstest"
"github.com/containerd/continuity/testutil/loopback"

zfs "github.com/mistifyio/go-zfs"
"github.com/mistifyio/go-zfs/v3"
)

func newTestZpool() (string, func() error, error) {
Expand Down

0 comments on commit d904e63

Please sign in to comment.