This repository was archived by the owner on Jan 28, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
demo: adds encryptd for timelock encryption at upload #17
Open
andrewxhill
wants to merge
1
commit into
main
Choose a base branch
from
andrew/basin-tlock
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -9,62 +9,87 @@ require ( | |
| github.com/google/go-cmp v0.5.9 | ||
| github.com/jackc/pglogrepl v0.0.0-20230728225306-38e8a4e50913 | ||
| github.com/jackc/pgx/v5 v5.4.3 | ||
| github.com/lib/pq v1.2.0 | ||
| github.com/lib/pq v1.10.9 | ||
| github.com/mitchellh/go-homedir v1.1.0 | ||
| github.com/olekukonko/tablewriter v0.0.5 | ||
| github.com/ory/dockertest/v3 v3.10.0 | ||
| github.com/schollz/progressbar/v3 v3.13.1 | ||
| github.com/stretchr/testify v1.8.4 | ||
| github.com/urfave/cli/v2 v2.25.7 | ||
| golang.org/x/crypto v0.9.0 | ||
| golang.org/x/crypto v0.13.0 | ||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. can rollback these updates. hit errors w/o so would need to investigate |
||
| golang.org/x/exp v0.0.0-20230905200255-921286631fa9 | ||
| google.golang.org/grpc v1.57.0 | ||
| gopkg.in/yaml.v3 v3.0.1 | ||
| ) | ||
|
|
||
| require ( | ||
| filippo.io/age v1.1.1 // indirect | ||
| github.com/Azure/go-ansiterm v0.0.0-20170929234023-d6e3b3328b78 // indirect | ||
| github.com/BurntSushi/toml v1.3.2 // indirect | ||
| github.com/Microsoft/go-winio v0.6.0 // indirect | ||
| github.com/Nvveen/Gotty v0.0.0-20120604004816-cd527374f1e5 // indirect | ||
| github.com/beorn7/perks v1.0.1 // indirect | ||
| github.com/btcsuite/btcd/btcec/v2 v2.2.0 // indirect | ||
| github.com/cespare/xxhash/v2 v2.2.0 // indirect | ||
| github.com/containerd/continuity v0.3.0 // indirect | ||
| github.com/cpuguy83/go-md2man/v2 v2.0.2 // indirect | ||
| github.com/creack/pty v1.1.17 // indirect | ||
| github.com/davecgh/go-spew v1.1.1 // indirect | ||
| github.com/decred/dcrd/dcrec/secp256k1/v4 v4.0.1 // indirect | ||
| github.com/decred/dcrd/dcrec/secp256k1/v4 v4.1.0 // indirect | ||
| github.com/docker/cli v20.10.17+incompatible // indirect | ||
| github.com/docker/docker v20.10.7+incompatible // indirect | ||
| github.com/docker/go-connections v0.4.0 // indirect | ||
| github.com/docker/go-units v0.4.0 // indirect | ||
| github.com/docker/go-units v0.5.0 // indirect | ||
| github.com/drand/drand v1.5.4 // indirect | ||
| github.com/drand/kyber v1.2.0 // indirect | ||
| github.com/drand/kyber-bls12381 v0.2.6 // indirect | ||
| github.com/drand/tlock v1.0.1 // indirect | ||
| github.com/gogo/protobuf v1.3.2 // indirect | ||
| github.com/golang/protobuf v1.5.3 // indirect | ||
| github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 // indirect | ||
| github.com/hashicorp/errwrap v1.1.0 // indirect | ||
| github.com/hashicorp/go-multierror v1.1.1 // indirect | ||
| github.com/hashicorp/golang-lru v0.5.4 // indirect | ||
| github.com/holiman/uint256 v1.2.3 // indirect | ||
| github.com/imdario/mergo v0.3.12 // indirect | ||
| github.com/jackc/pgio v1.0.0 // indirect | ||
| github.com/jackc/pgpassfile v1.0.0 // indirect | ||
| github.com/jackc/pgservicefile v0.0.0-20221227161230-091c0ba34f0a // indirect | ||
| github.com/kilic/bls12-381 v0.1.0 // indirect | ||
| github.com/mattn/go-runewidth v0.0.14 // indirect | ||
| github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect | ||
| github.com/mitchellh/colorstring v0.0.0-20190213212951-d06e56a500db // indirect | ||
| github.com/mitchellh/mapstructure v1.4.1 // indirect | ||
| github.com/moby/term v0.0.0-20201216013528-df9cb8a40635 // indirect | ||
| github.com/nikkolasg/hexjson v0.1.0 // indirect | ||
| github.com/opencontainers/go-digest v1.0.0 // indirect | ||
| github.com/opencontainers/image-spec v1.0.2 // indirect | ||
| github.com/opencontainers/runc v1.1.5 // indirect | ||
| github.com/pkg/errors v0.9.1 // indirect | ||
| github.com/pmezard/go-difflib v1.0.0 // indirect | ||
| github.com/prometheus/client_golang v1.14.0 // indirect | ||
| github.com/prometheus/client_model v0.3.0 // indirect | ||
| github.com/prometheus/common v0.42.0 // indirect | ||
| github.com/prometheus/procfs v0.9.0 // indirect | ||
| github.com/rivo/uniseg v0.2.0 // indirect | ||
| github.com/russross/blackfriday/v2 v2.1.0 // indirect | ||
| github.com/sirupsen/logrus v1.8.1 // indirect | ||
| github.com/sirupsen/logrus v1.9.0 // indirect | ||
| github.com/xeipuuv/gojsonpointer v0.0.0-20180127040702-4e3ac2762d5f // indirect | ||
| github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 // indirect | ||
| github.com/xeipuuv/gojsonschema v1.2.0 // indirect | ||
| github.com/xrash/smetrics v0.0.0-20201216005158-039620a65673 // indirect | ||
| go.uber.org/atomic v1.10.0 // indirect | ||
| go.uber.org/multierr v1.10.0 // indirect | ||
| go.uber.org/zap v1.24.0 // indirect | ||
| golang.org/x/mod v0.12.0 // indirect | ||
| golang.org/x/net v0.15.0 // indirect | ||
| golang.org/x/sync v0.3.0 // indirect | ||
| golang.org/x/sys v0.12.0 // indirect | ||
| golang.org/x/term v0.8.0 // indirect | ||
| golang.org/x/sys v0.14.0 // indirect | ||
| golang.org/x/term v0.14.0 // indirect | ||
| golang.org/x/text v0.13.0 // indirect | ||
| golang.org/x/tools v0.13.0 // indirect | ||
| google.golang.org/genproto/googleapis/rpc v0.0.0-20230525234030-28d5490b6b19 // indirect | ||
| google.golang.org/protobuf v1.30.0 // indirect | ||
| gopkg.in/yaml.v2 v2.4.0 // indirect | ||
| zenhack.net/go/util v0.0.0-20230414204917-531d38494cf5 // indirect | ||
| ) | ||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
just reverse compat with existing configs