-
Notifications
You must be signed in to change notification settings - Fork 156
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #469 from mutagen-io/v018-development
all: dependency updates and small changes for v0.18.x
- Loading branch information
Showing
53 changed files
with
192 additions
and
188 deletions.
There are no files selected for viewing
This file contains 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 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 |
---|---|---|
@@ -1,8 +1,17 @@ | ||
package external | ||
|
||
// UsePathBasedLookupForDaemonStart tells Mutagen cmd packages that they should | ||
// use PATH-based lookups to identify the Mutagen executable when trying to | ||
// start the Mutagen daemon. This is required for start (and autostart) behavior | ||
// to function correctly if the calling executable is not the Mutagen CLI. This | ||
// variable must be set in an init function. | ||
var UsePathBasedLookupForDaemonStart bool | ||
var ( | ||
// DisableDaemonAutostart tells Mutagen cmd packages that they should | ||
// disable daemon autostart behavior. This is the programmatic equivalent to | ||
// MUTAGEN_DISABLE_AUTOSTART=1. The resulting behavior is the logical-OR of | ||
// either condition (i.e. leaving this false does not override the | ||
// environment variable specification). This variable must be set in an init | ||
// function. | ||
DisableDaemonAutostart bool | ||
// UsePathBasedLookupForDaemonStart tells Mutagen cmd packages that they | ||
// should use PATH-based lookups to identify the Mutagen executable when | ||
// trying to start the Mutagen daemon. This is required for start (and | ||
// autostart) behavior to function correctly if the calling executable is | ||
// not the Mutagen CLI. This variable must be set in an init function. | ||
UsePathBasedLookupForDaemonStart bool | ||
) |
This file contains 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 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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
//go:build mutagencli | ||
|
||
package daemon | ||
|
||
// We only register protocol handlers when building the Mutagen CLI, that way | ||
// Mutagen command line code can be embedded into other tools that might want to | ||
// register their own handlers. | ||
|
||
import ( | ||
_ "github.com/mutagen-io/mutagen/pkg/forwarding/protocols/docker" | ||
_ "github.com/mutagen-io/mutagen/pkg/forwarding/protocols/local" | ||
_ "github.com/mutagen-io/mutagen/pkg/forwarding/protocols/ssh" | ||
_ "github.com/mutagen-io/mutagen/pkg/synchronization/protocols/docker" | ||
_ "github.com/mutagen-io/mutagen/pkg/synchronization/protocols/local" | ||
_ "github.com/mutagen-io/mutagen/pkg/synchronization/protocols/ssh" | ||
) |
This file contains 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 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 |
---|---|---|
@@ -1,45 +1,45 @@ | ||
module github.com/mutagen-io/mutagen | ||
|
||
go 1.19 | ||
go 1.20 | ||
|
||
require ( | ||
github.com/Microsoft/go-winio v0.6.0 | ||
github.com/bmatcuk/doublestar/v4 v4.6.0 | ||
github.com/Microsoft/go-winio v0.6.1 | ||
github.com/bmatcuk/doublestar/v4 v4.6.1 | ||
github.com/dustin/go-humanize v1.0.1 | ||
github.com/eknkc/basex v1.0.1 | ||
github.com/fatih/color v1.13.0 | ||
github.com/golang-jwt/jwt/v4 v4.4.3 | ||
github.com/fatih/color v1.16.0 | ||
github.com/golang-jwt/jwt/v4 v4.5.0 | ||
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da | ||
github.com/google/uuid v1.3.0 | ||
github.com/hectane/go-acl v0.0.0-20190604041725-da78bae5fc95 | ||
github.com/klauspost/compress v1.15.14 | ||
github.com/mattn/go-isatty v0.0.16 | ||
github.com/google/uuid v1.4.0 | ||
github.com/hectane/go-acl v0.0.0-20230122075934-ca0b05cb1adb | ||
github.com/klauspost/compress v1.17.3 | ||
github.com/mattn/go-isatty v0.0.20 | ||
github.com/mutagen-io/extstat v0.0.0-20210224131814-32fa3f057fa8 | ||
github.com/mutagen-io/fsevents v0.0.0-20230629001834-f53e17b91ebc | ||
github.com/mutagen-io/gopass v0.0.0-20230214181532-d4b7cdfe054c | ||
github.com/spf13/cobra v1.6.1 | ||
github.com/spf13/cobra v1.8.0 | ||
github.com/spf13/pflag v1.0.5 | ||
github.com/zeebo/xxh3 v1.0.2 | ||
golang.org/x/net v0.7.0 | ||
golang.org/x/sys v0.5.0 | ||
golang.org/x/text v0.7.0 | ||
google.golang.org/grpc v1.53.0 | ||
golang.org/x/net v0.19.0 | ||
golang.org/x/sys v0.15.0 | ||
golang.org/x/text v0.14.0 | ||
google.golang.org/grpc v1.59.0 | ||
google.golang.org/grpc/cmd/protoc-gen-go-grpc v1.2.0 | ||
google.golang.org/protobuf v1.28.1 | ||
google.golang.org/protobuf v1.31.0 | ||
gopkg.in/yaml.v2 v2.4.0 | ||
k8s.io/apimachinery v0.21.3 | ||
) | ||
|
||
require ( | ||
github.com/golang/protobuf v1.5.2 // indirect | ||
github.com/golang/protobuf v1.5.3 // indirect | ||
github.com/google/go-cmp v0.5.9 // indirect | ||
github.com/inconshreveable/mousetrap v1.1.0 // indirect | ||
github.com/klauspost/cpuid/v2 v2.0.9 // indirect | ||
github.com/mattn/go-colorable v0.1.12 // indirect | ||
golang.org/x/mod v0.8.0 // indirect | ||
golang.org/x/term v0.5.0 // indirect | ||
golang.org/x/tools v0.6.0 // indirect | ||
google.golang.org/genproto v0.0.0-20230209215440-0dfe4f8abfcc // indirect | ||
github.com/mattn/go-colorable v0.1.13 // indirect | ||
golang.org/x/mod v0.14.0 // indirect | ||
golang.org/x/term v0.15.0 // indirect | ||
golang.org/x/tools v0.16.0 // indirect | ||
google.golang.org/genproto/googleapis/rpc v0.0.0-20231127180814-3a041ad873d4 // indirect | ||
) | ||
|
||
replace k8s.io/apimachinery v0.21.3 => github.com/mutagen-io/apimachinery v0.21.3-mutagen1 |
Oops, something went wrong.