mirror of https://github.com/docker/cli.git
[20.10] vendor: github.com/containerd/continuity v0.3.0
full diff: efbc4488d8
...v0.3.0
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
parent
a39f3fbdfd
commit
e9176b36cc
|
@ -4,7 +4,7 @@ github.com/beorn7/perks 37c8de3658fcb183f997c4e13e83
|
||||||
github.com/cespare/xxhash/v2 d7df74196a9e781ede915320c11c378c1b2f3a1f # v2.1.1
|
github.com/cespare/xxhash/v2 d7df74196a9e781ede915320c11c378c1b2f3a1f # v2.1.1
|
||||||
github.com/containerd/console 5d7e1412f07b502a01029ea20e20e0d2be31fa7c # v1.0.1
|
github.com/containerd/console 5d7e1412f07b502a01029ea20e20e0d2be31fa7c # v1.0.1
|
||||||
github.com/containerd/containerd 0edc412565dcc6e3d6125ff9e4b009ad4b89c638 # master (v1.5.0-dev)
|
github.com/containerd/containerd 0edc412565dcc6e3d6125ff9e4b009ad4b89c638 # master (v1.5.0-dev)
|
||||||
github.com/containerd/continuity efbc4488d8fe1bdc16bde3b2d2990d9b3a899165
|
github.com/containerd/continuity 5ad51c7aca47b8e742f5e6e7dc841d50f5f6affd # v0.3.0
|
||||||
github.com/containerd/cgroups 0b889c03f102012f1d93a97ddd3ef71cd6f4f510
|
github.com/containerd/cgroups 0b889c03f102012f1d93a97ddd3ef71cd6f4f510
|
||||||
github.com/containerd/typeurl cd3ce7159eae562a4f60ceff37dada11a939d247 # v1.0.1
|
github.com/containerd/typeurl cd3ce7159eae562a4f60ceff37dada11a939d247 # v1.0.1
|
||||||
github.com/coreos/etcd d57e8b8d97adfc4a6c224fe116714bf1a1f3beb9 # v3.3.12
|
github.com/coreos/etcd d57e8b8d97adfc4a6c224fe116714bf1a1f3beb9 # v3.3.12
|
||||||
|
|
|
@ -1,19 +1,20 @@
|
||||||
# continuity
|
# continuity
|
||||||
|
|
||||||
[![GoDoc](https://godoc.org/github.com/containerd/continuity?status.svg)](https://godoc.org/github.com/containerd/continuity)
|
[![Go Reference](https://pkg.go.dev/badge/github.com/containerd/continuity.svg)](https://pkg.go.dev/github.com/containerd/continuity)
|
||||||
[![Build Status](https://travis-ci.org/containerd/continuity.svg?branch=master)](https://travis-ci.org/containerd/continuity)
|
[![Build Status](https://github.com/containerd/continuity/workflows/Continuity/badge.svg)](https://github.com/containerd/continuity/actions?query=workflow%3AContinuity+branch%3Amain)
|
||||||
|
|
||||||
A transport-agnostic, filesystem metadata manifest system
|
A transport-agnostic, filesystem metadata manifest system
|
||||||
|
|
||||||
This project is a staging area for experiments in providing transport agnostic
|
This project is a staging area for experiments in providing transport agnostic
|
||||||
metadata storage.
|
metadata storage.
|
||||||
|
|
||||||
Please see https://github.com/opencontainers/specs/issues/11 for more details.
|
See [opencontainers/runtime-spec#11](https://github.com/opencontainers/runtime-spec/issues/11)
|
||||||
|
for more details.
|
||||||
|
|
||||||
## Manifest Format
|
## Manifest Format
|
||||||
|
|
||||||
A continuity manifest encodes filesystem metadata in Protocol Buffers.
|
A continuity manifest encodes filesystem metadata in Protocol Buffers.
|
||||||
Please refer to [proto/manifest.proto](proto/manifest.proto).
|
Refer to [proto/manifest.proto](proto/manifest.proto) for more details.
|
||||||
|
|
||||||
## Usage
|
## Usage
|
||||||
|
|
||||||
|
@ -63,6 +64,10 @@ $ stat -c %a Makefile
|
||||||
$ ./bin/continuity verify . /tmp/a.pb
|
$ ./bin/continuity verify . /tmp/a.pb
|
||||||
```
|
```
|
||||||
|
|
||||||
|
## Platforms
|
||||||
|
|
||||||
|
continuity primarily targets Linux. Continuity may compile for and work on
|
||||||
|
other operating systems, but those platforms are not tested.
|
||||||
|
|
||||||
## Contribution Guide
|
## Contribution Guide
|
||||||
### Building Proto Package
|
### Building Proto Package
|
||||||
|
@ -77,8 +82,8 @@ $ go generate ./proto
|
||||||
|
|
||||||
continuity is a containerd sub-project, licensed under the [Apache 2.0 license](./LICENSE).
|
continuity is a containerd sub-project, licensed under the [Apache 2.0 license](./LICENSE).
|
||||||
As a containerd sub-project, you will find the:
|
As a containerd sub-project, you will find the:
|
||||||
* [Project governance](https://github.com/containerd/project/blob/master/GOVERNANCE.md),
|
* [Project governance](https://github.com/containerd/project/blob/main/GOVERNANCE.md),
|
||||||
* [Maintainers](https://github.com/containerd/project/blob/master/MAINTAINERS),
|
* [Maintainers](https://github.com/containerd/project/blob/main/MAINTAINERS),
|
||||||
* and [Contributing guidelines](https://github.com/containerd/project/blob/master/CONTRIBUTING.md)
|
* and [Contributing guidelines](https://github.com/containerd/project/blob/main/CONTRIBUTING.md)
|
||||||
|
|
||||||
information in our [`containerd/project`](https://github.com/containerd/project) repository.
|
information in our [`containerd/project`](https://github.com/containerd/project) repository.
|
||||||
|
|
|
@ -1,23 +1,14 @@
|
||||||
module github.com/containerd/continuity
|
module github.com/containerd/continuity
|
||||||
|
|
||||||
go 1.13
|
go 1.17
|
||||||
|
|
||||||
require (
|
require (
|
||||||
bazil.org/fuse v0.0.0-20160811212531-371fbbdaa898
|
github.com/Microsoft/go-winio v0.5.2
|
||||||
github.com/dustin/go-humanize v0.0.0-20171111073723-bb3d318650d4
|
github.com/opencontainers/go-digest v1.0.0
|
||||||
github.com/golang/protobuf v1.2.0
|
github.com/sirupsen/logrus v1.8.1
|
||||||
github.com/inconshreveable/mousetrap v1.0.0 // indirect
|
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c
|
||||||
github.com/onsi/ginkgo v1.10.1 // indirect
|
golang.org/x/sys v0.0.0-20220405210540-1e041c57c461
|
||||||
github.com/onsi/gomega v1.7.0 // indirect
|
google.golang.org/protobuf v1.26.0
|
||||||
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
|
|
||||||
)
|
)
|
||||||
|
|
||||||
|
require github.com/stretchr/testify v1.3.0 // indirect
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
// +build darwin freebsd openbsd
|
//go:build !(linux || solaris || windows)
|
||||||
|
// +build !linux,!solaris,!windows
|
||||||
|
|
||||||
/*
|
/*
|
||||||
Copyright The containerd Authors.
|
Copyright The containerd Authors.
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
//go:build linux || darwin
|
||||||
// +build linux darwin
|
// +build linux darwin
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
//go:build !linux && !darwin
|
||||||
// +build !linux,!darwin
|
// +build !linux,!darwin
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
Loading…
Reference in New Issue