Skip to content

Commit acfe372

Browse files
committed
Changes for rename from gnatsd -> nats-server
Signed-off-by: Derek Collison <[email protected]>
1 parent 44b0129 commit acfe372

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

62 files changed

+7170
-240
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ _testmain.go
3636
.DS_Store
3737

3838
# bin
39+
nats-server
3940
gnatsd
4041
/util/mkpasswd
4142

.travis.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,21 +2,24 @@ language: go
22
go:
33
- 1.11.x
44
- 1.12.x
5-
go_import_path: github.com/nats-io/gnatsd
5+
env:
6+
- GO111MODULE=off
7+
go_import_path: github.com/nats-io/nats-server
68
install:
79
- go get github.com/nats-io/go-nats
810
- go get github.com/nats-io/nkeys
911
- go get github.com/nats-io/jwt
1012
- go get github.com/mattn/goveralls
1113
- go get github.com/wadey/gocovmerge
14+
- go get github.com/tcnksm/ghr
1215
- go get -u honnef.co/go/tools/cmd/staticcheck
1316
- go get -u github.com/client9/misspell/cmd/misspell
1417
before_script:
1518
- EXCLUDE_VENDOR=$(go list ./... | grep -v "/vendor/")
1619
- go build
1720
- $(exit $(go fmt $EXCLUDE_VENDOR | wc -l))
1821
- go vet $EXCLUDE_VENDOR
19-
- misspell -error -locale US .
22+
- misspell -error -locale US $EXCLUDE_VENDOR
2023
- staticcheck $EXCLUDE_VENDOR
2124
- if [[ "$TRAVIS_GO_VERSION" =~ 1.11 ]] && [ "$TRAVIS_TAG" != "" ]; then ./scripts/cross_compile.sh $TRAVIS_TAG; fi
2225
script:

Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@ FROM golang:1.11
22

33
MAINTAINER Ivan Kozlovic <[email protected]>
44

5-
COPY . /go/src/github.com/nats-io/gnatsd
6-
WORKDIR /go/src/github.com/nats-io/gnatsd
5+
COPY . /go/src/github.com/nats-io/nats-server
6+
WORKDIR /go/src/github.com/nats-io/nats-server
77

8-
RUN CGO_ENABLED=0 go install -v -a -tags netgo -installsuffix netgo -ldflags "-s -w -X github.com/nats-io/gnatsd/server.gitCommit=`git rev-parse --short HEAD`"
8+
RUN CGO_ENABLED=0 GO111MODULE=off go install -v -a -tags netgo -installsuffix netgo -ldflags "-s -w -X github.com/nats-io/nats-server/server.gitCommit=`git rev-parse --short HEAD`"
99

1010
EXPOSE 4222 8222
11-
ENTRYPOINT ["gnatsd"]
11+
ENTRYPOINT ["nats-server"]
1212
CMD ["--help"]

Dockerfile.all

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@ FROM golang:1.11
22

33
MAINTAINER Ivan Kozlovic <[email protected]>
44

5-
COPY . /go/src/github.com/nats-io/gnatsd
6-
WORKDIR /go/src/github.com/nats-io/gnatsd
7-
8-
RUN CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -v -a -tags netgo -installsuffix netgo -ldflags "-s -w -X github.com/nats-io/gnatsd/server.gitCommit=`git rev-parse --short HEAD`" -o pkg/linux-amd64/gnatsd
9-
RUN CGO_ENABLED=0 GOOS=linux GOARCH=arm GOARM=6 go build -v -a -tags netgo -installsuffix netgo -ldflags "-s -w -X github.com/nats-io/gnatsd/server.gitCommit=`git rev-parse --short HEAD`" -o pkg/linux-arm6/gnatsd
10-
RUN CGO_ENABLED=0 GOOS=linux GOARCH=arm GOARM=7 go build -v -a -tags netgo -installsuffix netgo -ldflags "-s -w -X github.com/nats-io/gnatsd/server.gitCommit=`git rev-parse --short HEAD`" -o pkg/linux-arm7/gnatsd
11-
RUN CGO_ENABLED=0 GOOS=linux GOARCH=arm64 go build -v -a -tags netgo -installsuffix netgo -ldflags "-s -w -X github.com/nats-io/gnatsd/server.gitCommit=`git rev-parse --short HEAD`" -o pkg/linux-arm64/gnatsd
12-
RUN CGO_ENABLED=0 GOOS=windows GOARCH=amd64 go build -v -a -tags netgo -installsuffix netgo -ldflags "-s -w -X github.com/nats-io/gnatsd/server.gitCommit=`git rev-parse --short HEAD`" -o pkg/win-amd64/gnatsd.exe
5+
COPY . /go/src/github.com/nats-io/nats-server
6+
WORKDIR /go/src/github.com/nats-io/nats-server
7+
8+
RUN CGO_ENABLED=0 GO111MODULE=off GOOS=linux GOARCH=amd64 go build -v -a -tags netgo -installsuffix netgo -ldflags "-s -w -X github.com/nats-io/nats-server/server.gitCommit=`git rev-parse --short HEAD`" -o pkg/linux-amd64/nats-server
9+
RUN CGO_ENABLED=0 GO111MODULE=off GOOS=linux GOARCH=arm GOARM=6 go build -v -a -tags netgo -installsuffix netgo -ldflags "-s -w -X github.com/nats-io/nats-server/server.gitCommit=`git rev-parse --short HEAD`" -o pkg/linux-arm6/nats-server
10+
RUN CGO_ENABLED=0 GO111MODULE=off GOOS=linux GOARCH=arm GOARM=7 go build -v -a -tags netgo -installsuffix netgo -ldflags "-s -w -X github.com/nats-io/nats-server/server.gitCommit=`git rev-parse --short HEAD`" -o pkg/linux-arm7/nats-server
11+
RUN CGO_ENABLED=0 GO111MODULE=off GOOS=linux GOARCH=arm64 go build -v -a -tags netgo -installsuffix netgo -ldflags "-s -w -X github.com/nats-io/nats-server/server.gitCommit=`git rev-parse --short HEAD`" -o pkg/linux-arm64/nats-server
12+
RUN CGO_ENABLED=0 GO111MODULE=off GOOS=windows GOARCH=amd64 go build -v -a -tags netgo -installsuffix netgo -ldflags "-s -w -X github.com/nats-io/nats-server/server.gitCommit=`git rev-parse --short HEAD`" -o pkg/win-amd64/nats-server.exe
1313

1414
ENTRYPOINT ["go"]
1515
CMD ["version"]

README.md

Lines changed: 43 additions & 43 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ If you just want to start using NATS, and you have [installed Go](https://golang
1111
Install and run the NATS server:
1212

1313
```
14-
go get github.com/nats-io/gnatsd
15-
gnatsd
14+
go get github.com/nats-io/nats-server
15+
nats-server
1616
```
1717

1818
Install the [Go NATS client](https://github.com/nats-io/go-nats/blob/master/README.md):
@@ -40,16 +40,16 @@ You can build the latest version of the server from the `master` branch. The mas
4040
You need [*Go*](https://golang.org/) version 1.9+ [installed](https://golang.org/doc/install) to build the NATS server. We support vendored dependencies.
4141

4242
- Run `go version` to verify that you are running Go 1.9+. (Run `go help` for more guidance.)
43-
- Clone the <https://github.com/nats-io/gnatsd> repository.
44-
- Run `go build` inside the `/nats-io/gnatsd` directory. A successful build produces no messages and creates the server executable `gnatsd` in the directory.
43+
- Clone the <https://github.com/nats-io/nats-server> repository.
44+
- Run `go build` inside the `/nats-io/nats-server` directory. A successful build produces no messages and creates the server executable `nats-server` in the directory.
4545
- Run `go test ./...` to run the unit regression tests.
4646

4747
## Running
4848

49-
To start the NATS server with default settings (and no authentication or clustering), you can invoke the `gnatsd` binary with no [command line options](#command-line-arguments) or [configuration file](#configuration-file).
49+
To start the NATS server with default settings (and no authentication or clustering), you can invoke the `nats-server` binary with no [command line options](#command-line-arguments) or [configuration file](#configuration-file).
5050

5151
```sh
52-
> ./gnatsd
52+
> ./nats-server
5353
[68229] 2018/08/29 11:50:53.789318 [INF] Starting nats-server version 1.3.0
5454
[68229] 2018/08/29 11:50:53.789381 [INF] Git commit [not set]
5555
[68229] 2018/08/29 11:50:53.789566 [INF] Listening for client connections on 0.0.0.0:4222
@@ -92,27 +92,27 @@ On Unix systems, the NATS server responds to the following signals:
9292
| SIGUSR1 | Reopens the log file for log rotation |
9393
| SIGHUP | Reloads server configuration file |
9494

95-
The `gnatsd` binary can be used to send these signals to running NATS servers using the `-sl` flag:
95+
The `nats-server` binary can be used to send these signals to running NATS servers using the `-sl` flag:
9696

9797
```sh
9898
# Reload server configuration
99-
gnatsd -sl reload
99+
nats-server -sl reload
100100

101101
# Reopen log file for log rotation
102-
gnatsd -sl reopen
102+
nats-server -sl reopen
103103

104104
# Stop the server
105-
gnatsd -sl stop
105+
nats-server -sl stop
106106
```
107107

108-
If there are multiple `gnatsd` processes running, or if `pgrep` isn't available, you must either specify a PID or the absolute path to a PID file:
108+
If there are multiple `nats-server` processes running, or if `pgrep` isn't available, you must either specify a PID or the absolute path to a PID file:
109109

110110
```sh
111-
gnatsd -sl stop=<pid>
111+
nats-server -sl stop=<pid>
112112
```
113113

114114
```sh
115-
gnatsd -sl stop=/path/to/pidfile
115+
nats-server -sl stop=/path/to/pidfile
116116
```
117117

118118
See the [Windows Service](#windows-service) section for information on signaling the NATS server on Windows.
@@ -122,27 +122,27 @@ See the [Windows Service](#windows-service) section for information on signaling
122122
The NATS server supports running as a Windows service. In fact, this is the recommended way of running NATS on Windows. There is currently no installer and instead users should use `sc.exe` to install the service:
123123

124124
```batch
125-
sc.exe create gnatsd binPath= "%NATS_PATH%\gnatsd.exe [gnatsd flags]"
126-
sc.exe start gnatsd
125+
sc.exe create nats-server binPath= "%NATS_PATH%\nats-server.exe [nats-server flags]"
126+
sc.exe start nats-server
127127
```
128128

129-
The above will create and start a `gnatsd` service. Note that the gnatsd flags should be passed in when creating the service. This allows for running multiple NATS server configurations on a single Windows server by using a 1:1 service instance per installed NATS server service. Once the service is running, it can be controlled using `sc.exe` or `gnatsd.exe -sl`:
129+
The above will create and start a `nats-server` service. Note that the nats-server flags should be passed in when creating the service. This allows for running multiple NATS server configurations on a single Windows server by using a 1:1 service instance per installed NATS server service. Once the service is running, it can be controlled using `sc.exe` or `nats-server.exe -sl`:
130130

131131
```batch
132132
REM Reload server configuration
133-
gnatsd.exe -sl reload
133+
nats-server.exe -sl reload
134134
135135
REM Reopen log file for log rotation
136-
gnatsd.exe -sl reopen
136+
nats-server.exe -sl reopen
137137
138138
REM Stop the server
139-
gnatsd.exe -sl stop
139+
nats-server.exe -sl stop
140140
```
141141

142-
The above commands will default to controlling the `gnatsd` service. If the service is another name, it can be specified:
142+
The above commands will default to controlling the `nats-server` service. If the service is another name, it can be specified:
143143

144144
```batch
145-
gnatsd.exe -sl stop=<service name>
145+
nats-server.exe -sl stop=<service name>
146146
```
147147

148148
## Command line arguments
@@ -157,8 +157,8 @@ Server Options:
157157
-m, --http_port <port> Use port for http monitoring
158158
-ms,--https_port <port> Use port for https monitoring
159159
-c, --config <file> Configuration file
160-
-sl,--signal <signal>[=<pid>] Send signal to gnatsd process (stop, quit, reopen, reload)
161-
<pid> can be either a PID (e.g. 1) or the path to a PID file (e.g. /var/run/gnatsd.pid)
160+
-sl,--signal <signal>[=<pid>] Send signal to nats-server process (stop, quit, reopen, reload)
161+
<pid> can be either a PID (e.g. 1) or the path to a PID file (e.g. /var/run/nats-server.pid)
162162
--client_advertise <string> Client URL to advertise to other servers
163163
-t Test configuration and exit
164164
@@ -323,7 +323,7 @@ NATS makes building the full mesh easy. Simply designate a server to be a *seed*
323323
When running NATS Servers in different hosts, the command line parameters for all servers could be as simple as:
324324

325325
```
326-
gnatsd --cluster nats://$HOSTNAME:$NATS_CLUSTER_PORT --routes nats://$NATS_SEED_HOST:$NATS_CLUSTER_PORT
326+
nats-server --cluster nats://$HOSTNAME:$NATS_CLUSTER_PORT --routes nats://$NATS_SEED_HOST:$NATS_CLUSTER_PORT
327327
```
328328

329329
Even on the host where the *seed* is running, the above would work as the server would detect an attempt to connect to itself and ignore that. In other words, the same command line could be deployed in several hosts and the full mesh will properly form.
@@ -337,7 +337,7 @@ The following example demonstrates how to run a cluster of 3 servers on the same
337337
See also [clustered NATS](https://nats.io/documentation/managing_the_server/clustering/) for clustered NATS examples using Docker.
338338

339339
```
340-
gnatsd -p 4222 -cluster nats://localhost:4248
340+
nats-server -p 4222 -cluster nats://localhost:4248
341341
```
342342

343343
Alternatively, you could use a configuration file, let's call it `seed.conf`, with a content similar to this:
@@ -356,7 +356,7 @@ cluster {
356356
And start the server like this:
357357

358358
```
359-
gnatsd -config ./seed.conf -D
359+
nats-server -config ./seed.conf -D
360360
```
361361

362362
This will produce an output similar to:
@@ -380,7 +380,7 @@ cluster {
380380
Now let's start two more servers, each one connecting to the seed server.
381381

382382
```
383-
gnatsd -p 5222 -cluster nats://localhost:5248 -routes nats://localhost:4248 -D
383+
nats-server -p 5222 -cluster nats://localhost:5248 -routes nats://localhost:4248 -D
384384
```
385385

386386
When running on the same host, we need to pick different ports for the client connections `-p`, and for the port used to accept other routes `-cluster`. Note that `-routes` points to the `-cluster` address of the seed server (`localhost:4248`).
@@ -410,7 +410,7 @@ From the seed's server log, we see that the route is indeed accepted:
410410
Finally, let's start the third server:
411411

412412
```
413-
gnatsd -p 6222 -cluster nats://localhost:6248 -routes nats://localhost:4248 -D
413+
nats-server -p 6222 -cluster nats://localhost:6248 -routes nats://localhost:4248 -D
414414
```
415415

416416
Again, notice that we use a different client port and cluster address, but still point to the same seed server at the address `nats://localhost:4248`:
@@ -617,7 +617,7 @@ The NATS server supports single and multi-user/client authentication. See also t
617617
For single-user authentication, you can start the NATS server with authentication enabled by passing in the required credentials on the command line.
618618

619619
```
620-
gnatsd --user derek --pass T0pS3cr3t
620+
nats-server --user derek --pass T0pS3cr3t
621621
```
622622
You can also enable single-user authentication and set the credentials in the server configuration file as follows:
623623

@@ -640,7 +640,7 @@ nats://derek:T0pS3cr3t@localhost:4222
640640
A token is a unique identifier of an application requesting to connect to NATS. You can start the NATS server with authentication enabled by passing in the required token on the command line.
641641

642642
```
643-
gnatsd -auth 'S3Cr3T0k3n!'
643+
nats-server -auth 'S3Cr3T0k3n!'
644644
```
645645

646646
You can also enable token-based authentication and set the credentials in the server configuration file as follows:
@@ -980,7 +980,7 @@ The server can be run using command line arguments to enable TLS functionality.
980980
Examples using the test certificates which are self signed for localhost and 127.0.0.1.
981981

982982
```bash
983-
> ./gnatsd --tls --tlscert=./test/configs/certs/server-cert.pem --tlskey=./test/configs/certs/server-key.pem
983+
> ./nats-server --tls --tlscert=./test/configs/certs/server-cert.pem --tlskey=./test/configs/certs/server-key.pem
984984

985985
[70346] 2018/08/29 12:47:20.958931 [INF] Starting nats-server version 1.3.0
986986
[70346] 2018/08/29 12:47:20.959010 [INF] Git commit [not set]
@@ -1001,7 +1001,7 @@ Notice that the log indicates that the client connections will be required to u
10011001
If you want the server to enforce and require client certificates as well via the command line, utilize this example.
10021002

10031003
```
1004-
> ./gnatsd --tlsverify --tlscert=./test/configs/certs/server-cert.pem --tlskey=./test/configs/certs/server-key.pem --tlscacert=./test/configs/certs/ca.pem
1004+
> ./nats-server --tlsverify --tlscert=./test/configs/certs/server-cert.pem --tlskey=./test/configs/certs/server-key.pem --tlscacert=./test/configs/certs/ca.pem
10051005
```
10061006

10071007
#### TLS Authorization
@@ -1023,7 +1023,7 @@ To map permissions for a user, an email address can be defined as part of the ex
10231023

10241024
```
10251025
authorization {
1026-
users = [
1026+
users = [
10271027
{user: "[email protected]", permissions: { publish: "foo" }}
10281028
]
10291029
}
@@ -1055,7 +1055,7 @@ In addition to TLS functionality, the server now also supports bcrypt for passwo
10551055
There is a utility bundled under /util/mkpasswd. By default with no arguments it will generate a secure password and the associated hash. This can be used for a password or a token in the configuration. If you already have a password selected, you can supply that on stdin with the -p flag.
10561056

10571057
```bash
1058-
~/go/src/github.com/nats-io/gnatsd/util> ./mkpasswd
1058+
~/go/src/github.com/nats-io/nats-server/util> ./mkpasswd
10591059
pass: #IclkRPHUpsTmACWzmIGXr
10601060
bcrypt hash: $2a$11$3kIDaCxw.Glsl1.u5nKa6eUnNDLV5HV9tIuUp7EHhMt6Nm9myW1aS
10611061
```
@@ -1087,7 +1087,7 @@ Monitoring options
10871087

10881088
To enable monitoring via the configuration file, use `host:port` (there is no explicit configuration flag for the monitoring interface).
10891089

1090-
For example, running the `gnatsd -m 8222` command, you should see that the NATS server starts with the HTTP monitoring port enabled. To view the monitoring home page, go to <a href="http://localhost:8222/" target="_blank">http://localhost:8222/</a>.
1090+
For example, running the `nats-server -m 8222` command, you should see that the NATS server starts with the HTTP monitoring port enabled. To view the monitoring home page, go to <a href="http://localhost:8222/" target="_blank">http://localhost:8222/</a>.
10911091

10921092
```
10931093
[70450] 2018/08/29 12:48:30.819682 [INF] Starting nats-server version 1.3.0
@@ -1110,15 +1110,15 @@ NATS Office Hours will be on hiatus for the US summer season. Please join our [S
11101110
[License-Image]: https://img.shields.io/badge/License-Apache2-blue.svg
11111111
[Fossa-Url]: https://app.fossa.io/projects/git%2Bgithub.com%2Fnats-io%2Fgnatsd?ref=badge_shield
11121112
[Fossa-Image]: https://app.fossa.io/api/projects/git%2Bgithub.com%2Fnats-io%2Fgnatsd.svg?type=shield
1113-
[Build-Status-Url]: https://travis-ci.org/nats-io/gnatsd
1114-
[Build-Status-Image]: https://travis-ci.org/nats-io/gnatsd.svg?branch=master
1115-
[Release-Url]: https://github.com/nats-io/gnatsd/releases/tag/v2.0.0-RC8
1113+
[Build-Status-Url]: https://travis-ci.org/nats-io/nats-server
1114+
[Build-Status-Image]: https://travis-ci.org/nats-io/nats-server.svg?branch=master
1115+
[Release-Url]: https://github.com/nats-io/nats-server/releases/tag/v2.0.0-RC8
11161116
[Release-image]: https://img.shields.io/badge/release-v2.0.0--RC8-1eb0fc.svg
1117-
[Coverage-Url]: https://coveralls.io/r/nats-io/gnatsd?branch=master
1118-
[Coverage-image]: https://coveralls.io/repos/github/nats-io/gnatsd/badge.svg?branch=master
1119-
[ReportCard-Url]: https://goreportcard.com/report/nats-io/gnatsd
1120-
[ReportCard-Image]: https://goreportcard.com/badge/github.com/nats-io/gnatsd
1121-
[github-release]: https://github.com/nats-io/gnatsd/releases/
1117+
[Coverage-Url]: https://coveralls.io/r/nats-io/nats-server?branch=master
1118+
[Coverage-image]: https://coveralls.io/repos/github/nats-io/nats-server/badge.svg?branch=master
1119+
[ReportCard-Url]: https://goreportcard.com/report/nats-io/nats-server
1120+
[ReportCard-Image]: https://goreportcard.com/badge/github.com/nats-io/nats-server
1121+
[github-release]: https://github.com/nats-io/nats-server/releases/
11221122

11231123
## License
11241124

docker/Dockerfile.alpine

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
FROM golang:1.11-alpine3.8 AS builder
22

3-
WORKDIR $GOPATH/src/github.com/nats-io/gnatsd
3+
WORKDIR $GOPATH/src/github.com/nats-io/nats-server
44

55
MAINTAINER Waldemar Quevedo <[email protected]>
66

77
RUN apk add --update git
88

99
COPY . .
1010

11-
RUN CGO_ENABLED=0 go build -v -a -tags netgo -installsuffix netgo -ldflags "-s -w -X github.com/nats-io/gnatsd/server.gitCommit=`git rev-parse --short HEAD`" -o /nats-server
11+
RUN CGO_ENABLED=0 GO111MODULE=off go build -v -a -tags netgo -installsuffix netgo -ldflags "-s -w -X github.com/nats-io/nats-server/server.gitCommit=`git rev-parse --short HEAD`" -o /nats-server
1212

1313
FROM alpine:3.8
1414

@@ -17,7 +17,7 @@ RUN apk add --update ca-certificates && mkdir -p /nats/bin && mkdir /nats/conf
1717
COPY docker/nats-server.conf /nats/conf/nats-server.conf
1818
COPY --from=builder /nats-server /nats/bin/nats-server
1919

20-
RUN ln -ns /nats/bin/nats-server /bin/nats-server && ln -ns /nats/bin/nats-server /bin/gnatsd && ln -ns /nats/bin/nats-server /gnatsd
20+
RUN ln -ns /nats/bin/nats-server /bin/nats-server && ln -ns /nats/bin/nats-server /bin/nats-server && ln -ns /nats/bin/nats-server /nats-server
2121

2222
# Expose client, management, cluster and gateway ports
2323
EXPOSE 4222 8222 6222 5222

docker/nats-server.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@ cluster {
2121

2222
# Routes are actively solicited and connected to from this server.
2323
# This Docker image has none by default, but you can pass a
24-
# flag to the gnatsd docker image to create one to an existing server.
24+
# flag to the nats-server docker image to create one to an existing server.
2525
routes = []
2626
}

go.mod

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
1-
module github.com/nats-io/gnatsd
1+
module github.com/nats-io/nats-server
22

33
require (
44
github.com/nats-io/go-nats v1.7.2
55
github.com/nats-io/jwt v0.2.4
66
github.com/nats-io/nkeys v0.0.2
77
github.com/nats-io/nuid v1.0.1
8-
golang.org/x/crypto v0.0.0-20190411191339-88737f569e3a
9-
golang.org/x/sys v0.0.0-20190411185658-b44545bcd369
8+
golang.org/x/crypto v0.0.0-20190426145343-a29dc8fdc734
9+
golang.org/x/net v0.0.0-20190503192946-f4e77d36d62c // indirect
10+
golang.org/x/sys v0.0.0-20190506115046-ca7f33d4116e
11+
golang.org/x/text v0.3.2 // indirect
12+
golang.org/x/tools v0.0.0-20190506145303-2d16b83fe98c // indirect
1013
)

0 commit comments

Comments
 (0)