293e239e18
full diff: https://github.com/containerd/continuity/compare/26c1120b8d4107d2471b93ad78ef7ce1fc84c4c4...efbc4488d8fe1bdc16bde3b2d2990d9b3a899165 Relevant changes: - sysx/xattr: fix and improve - fix getxattrAll: change initial buffer size to 128 to prevent unneeded iterations and change the logic to get the real size in case we get ERANGE rather than doubling the buffer) - improve listxattrAll; refactor for readability, prevent calling `listxattr()` twice. Handle condition when attributes size is changed in between the two calls to listxattr(). - Remove Windows' Readlink fork - Drops support for Go 1.12 and under - Fix sameFile() to recognize empty files as the same - fixes "Empty files can diff as "modified" even when they're not" Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
24 lines
1000 B
Modula-2
24 lines
1000 B
Modula-2
module github.com/containerd/continuity
|
|
|
|
go 1.13
|
|
|
|
require (
|
|
bazil.org/fuse v0.0.0-20160811212531-371fbbdaa898
|
|
github.com/dustin/go-humanize v0.0.0-20171111073723-bb3d318650d4
|
|
github.com/golang/protobuf v1.2.0
|
|
github.com/inconshreveable/mousetrap v1.0.0 // indirect
|
|
github.com/onsi/ginkgo v1.10.1 // indirect
|
|
github.com/onsi/gomega v1.7.0 // indirect
|
|
github.com/opencontainers/go-digest v1.0.0-rc1
|
|
github.com/pkg/errors v0.8.1-0.20171018195549-f15c970de5b7
|
|
github.com/sirupsen/logrus v1.0.4-0.20170822132746-89742aefa4b2
|
|
github.com/spf13/cobra v0.0.2-0.20171109065643-2da4a54c5cee
|
|
github.com/spf13/pflag v1.0.1-0.20171106142849-4c012f6dcd95 // indirect
|
|
github.com/stretchr/testify v1.4.0 // indirect
|
|
golang.org/x/crypto v0.0.0-20171113213409-9f005a07e0d3 // indirect
|
|
golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f
|
|
golang.org/x/sys v0.0.0-20180909124046-d0be0721c37e
|
|
gopkg.in/airbrake/gobrake.v2 v2.0.9 // indirect
|
|
gopkg.in/gemnasium/logrus-airbrake-hook.v2 v2.1.2 // indirect
|
|
)
|