diff --git a/go.mod b/go.mod index 458640f..3b1d04c 100644 --- a/go.mod +++ b/go.mod @@ -1,8 +1,8 @@ module github.com/FiloSottile/mkcert require ( - github.com/DHowett/go-plist v0.0.0-20180609054337-500bd5b9081b golang.org/x/net v0.0.0-20180627171509-e514e69ffb8b golang.org/x/text v0.3.0 // indirect + howett.net/plist v0.0.0-20181124034731-591f970eefbb software.sslmate.com/src/go-pkcs12 v0.0.0-20180114231543-2291e8f0f237 ) diff --git a/go.sum b/go.sum index 68659a5..a2b114e 100644 --- a/go.sum +++ b/go.sum @@ -1,8 +1,15 @@ -github.com/DHowett/go-plist v0.0.0-20180609054337-500bd5b9081b h1:WFNhl1+1ofCWWdNFEhut77cmuMXjJYYvkEVloDdaUCI= -github.com/DHowett/go-plist v0.0.0-20180609054337-500bd5b9081b/go.mod h1:5paT5ZDrOm8eAJPem2Bd+q3FTi3Gxm/U4tb2tH8YIUQ= +github.com/jessevdk/go-flags v1.4.0/go.mod h1:4FA24M0QyGHXBuZZK/XkWh8h0e1EYbRYJSGM75WSRxI= +github.com/kr/pretty v0.1.0/go.mod h1:dAy3ld7l9f0ibDNOQOHHMYYIIbhfbHSm3C4ZsoJORNo= +github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ= +github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI= golang.org/x/net v0.0.0-20180627171509-e514e69ffb8b h1:oXs/nlnyk1ue6g+mFGEHIuIaQIT28IgumdSIRMq2aJY= golang.org/x/net v0.0.0-20180627171509-e514e69ffb8b/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/text v0.3.0 h1:g61tztE5qeGQ89tm6NTjjM9VPIm088od1l6aSorWRWg= golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= +gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= +gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= +gopkg.in/yaml.v2 v2.2.1/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= +howett.net/plist v0.0.0-20181124034731-591f970eefbb h1:jhnBjNi9UFpfpl8YZhA9CrOqpnJdvzuiHsl/dnxl11M= +howett.net/plist v0.0.0-20181124034731-591f970eefbb/go.mod h1:vMygbs4qMhSZSc4lCUl2OEE+rDiIIJAIdR4m7MiMcm0= software.sslmate.com/src/go-pkcs12 v0.0.0-20180114231543-2291e8f0f237 h1:iAEkCBPbRaflBgZ7o9gjVUuWuvWeV4sytFWg9o+Pj2k= software.sslmate.com/src/go-pkcs12 v0.0.0-20180114231543-2291e8f0f237/go.mod h1:/xvNRWUqm0+/ZMiF4EX00vrSCMsE4/NHb+Pt3freEeQ= diff --git a/truststore_darwin.go b/truststore_darwin.go index 26b59e9..1ad78f4 100644 --- a/truststore_darwin.go +++ b/truststore_darwin.go @@ -13,7 +13,7 @@ import ( "os/exec" "path/filepath" - "github.com/DHowett/go-plist" + "howett.net/plist" ) var ( diff --git a/vendor/github.com/DHowett/go-plist/.gitlab-ci.yml b/vendor/howett.net/plist/.gitlab-ci.yml similarity index 100% rename from vendor/github.com/DHowett/go-plist/.gitlab-ci.yml rename to vendor/howett.net/plist/.gitlab-ci.yml diff --git a/vendor/github.com/DHowett/go-plist/LICENSE b/vendor/howett.net/plist/LICENSE similarity index 100% rename from vendor/github.com/DHowett/go-plist/LICENSE rename to vendor/howett.net/plist/LICENSE diff --git a/vendor/github.com/DHowett/go-plist/README.md b/vendor/howett.net/plist/README.md similarity index 100% rename from vendor/github.com/DHowett/go-plist/README.md rename to vendor/howett.net/plist/README.md diff --git a/vendor/github.com/DHowett/go-plist/bplist.go b/vendor/howett.net/plist/bplist.go similarity index 100% rename from vendor/github.com/DHowett/go-plist/bplist.go rename to vendor/howett.net/plist/bplist.go diff --git a/vendor/github.com/DHowett/go-plist/bplist_generator.go b/vendor/howett.net/plist/bplist_generator.go similarity index 100% rename from vendor/github.com/DHowett/go-plist/bplist_generator.go rename to vendor/howett.net/plist/bplist_generator.go diff --git a/vendor/github.com/DHowett/go-plist/bplist_parser.go b/vendor/howett.net/plist/bplist_parser.go similarity index 100% rename from vendor/github.com/DHowett/go-plist/bplist_parser.go rename to vendor/howett.net/plist/bplist_parser.go diff --git a/vendor/github.com/DHowett/go-plist/decode.go b/vendor/howett.net/plist/decode.go similarity index 100% rename from vendor/github.com/DHowett/go-plist/decode.go rename to vendor/howett.net/plist/decode.go diff --git a/vendor/github.com/DHowett/go-plist/doc.go b/vendor/howett.net/plist/doc.go similarity index 100% rename from vendor/github.com/DHowett/go-plist/doc.go rename to vendor/howett.net/plist/doc.go diff --git a/vendor/github.com/DHowett/go-plist/encode.go b/vendor/howett.net/plist/encode.go similarity index 100% rename from vendor/github.com/DHowett/go-plist/encode.go rename to vendor/howett.net/plist/encode.go diff --git a/vendor/github.com/DHowett/go-plist/fuzz.go b/vendor/howett.net/plist/fuzz.go similarity index 100% rename from vendor/github.com/DHowett/go-plist/fuzz.go rename to vendor/howett.net/plist/fuzz.go diff --git a/vendor/howett.net/plist/go.mod b/vendor/howett.net/plist/go.mod new file mode 100644 index 0000000..ec83441 --- /dev/null +++ b/vendor/howett.net/plist/go.mod @@ -0,0 +1,9 @@ +module howett.net/plist + +require ( + // for cmd/ply + github.com/jessevdk/go-flags v1.4.0 + github.com/kr/pretty v0.1.0 // indirect + gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 // indirect + gopkg.in/yaml.v2 v2.2.1 +) diff --git a/vendor/github.com/DHowett/go-plist/marshal.go b/vendor/howett.net/plist/marshal.go similarity index 100% rename from vendor/github.com/DHowett/go-plist/marshal.go rename to vendor/howett.net/plist/marshal.go diff --git a/vendor/github.com/DHowett/go-plist/must.go b/vendor/howett.net/plist/must.go similarity index 100% rename from vendor/github.com/DHowett/go-plist/must.go rename to vendor/howett.net/plist/must.go diff --git a/vendor/github.com/DHowett/go-plist/plist.go b/vendor/howett.net/plist/plist.go similarity index 100% rename from vendor/github.com/DHowett/go-plist/plist.go rename to vendor/howett.net/plist/plist.go diff --git a/vendor/github.com/DHowett/go-plist/plist_types.go b/vendor/howett.net/plist/plist_types.go similarity index 100% rename from vendor/github.com/DHowett/go-plist/plist_types.go rename to vendor/howett.net/plist/plist_types.go diff --git a/vendor/github.com/DHowett/go-plist/text_generator.go b/vendor/howett.net/plist/text_generator.go similarity index 100% rename from vendor/github.com/DHowett/go-plist/text_generator.go rename to vendor/howett.net/plist/text_generator.go diff --git a/vendor/github.com/DHowett/go-plist/text_parser.go b/vendor/howett.net/plist/text_parser.go similarity index 100% rename from vendor/github.com/DHowett/go-plist/text_parser.go rename to vendor/howett.net/plist/text_parser.go diff --git a/vendor/github.com/DHowett/go-plist/text_tables.go b/vendor/howett.net/plist/text_tables.go similarity index 100% rename from vendor/github.com/DHowett/go-plist/text_tables.go rename to vendor/howett.net/plist/text_tables.go diff --git a/vendor/github.com/DHowett/go-plist/typeinfo.go b/vendor/howett.net/plist/typeinfo.go similarity index 100% rename from vendor/github.com/DHowett/go-plist/typeinfo.go rename to vendor/howett.net/plist/typeinfo.go diff --git a/vendor/github.com/DHowett/go-plist/unmarshal.go b/vendor/howett.net/plist/unmarshal.go similarity index 100% rename from vendor/github.com/DHowett/go-plist/unmarshal.go rename to vendor/howett.net/plist/unmarshal.go diff --git a/vendor/github.com/DHowett/go-plist/util.go b/vendor/howett.net/plist/util.go similarity index 100% rename from vendor/github.com/DHowett/go-plist/util.go rename to vendor/howett.net/plist/util.go diff --git a/vendor/github.com/DHowett/go-plist/xml_generator.go b/vendor/howett.net/plist/xml_generator.go similarity index 100% rename from vendor/github.com/DHowett/go-plist/xml_generator.go rename to vendor/howett.net/plist/xml_generator.go diff --git a/vendor/github.com/DHowett/go-plist/xml_parser.go b/vendor/howett.net/plist/xml_parser.go similarity index 100% rename from vendor/github.com/DHowett/go-plist/xml_parser.go rename to vendor/howett.net/plist/xml_parser.go diff --git a/vendor/github.com/DHowett/go-plist/zerocopy.go b/vendor/howett.net/plist/zerocopy.go similarity index 100% rename from vendor/github.com/DHowett/go-plist/zerocopy.go rename to vendor/howett.net/plist/zerocopy.go diff --git a/vendor/github.com/DHowett/go-plist/zerocopy_appengine.go b/vendor/howett.net/plist/zerocopy_appengine.go similarity index 100% rename from vendor/github.com/DHowett/go-plist/zerocopy_appengine.go rename to vendor/howett.net/plist/zerocopy_appengine.go diff --git a/vendor/modules.txt b/vendor/modules.txt index 6877cd3..66a0e36 100644 --- a/vendor/modules.txt +++ b/vendor/modules.txt @@ -1,5 +1,3 @@ -# github.com/DHowett/go-plist v0.0.0-20180609054337-500bd5b9081b -github.com/DHowett/go-plist # golang.org/x/net v0.0.0-20180627171509-e514e69ffb8b golang.org/x/net/idna # golang.org/x/text v0.3.0 @@ -7,6 +5,8 @@ golang.org/x/text/secure/bidirule golang.org/x/text/unicode/bidi golang.org/x/text/unicode/norm golang.org/x/text/transform +# howett.net/plist v0.0.0-20181124034731-591f970eefbb +howett.net/plist # software.sslmate.com/src/go-pkcs12 v0.0.0-20180114231543-2291e8f0f237 software.sslmate.com/src/go-pkcs12 software.sslmate.com/src/go-pkcs12/internal/rc2