Skip to content

Commit

Permalink
v2 license is now the default (#278)
Browse files Browse the repository at this point in the history
* v2 license is now the default

* removed unused code
  • Loading branch information
kelindar authored Oct 19, 2019
1 parent 7c6b3ed commit 9623e0e
Show file tree
Hide file tree
Showing 6 changed files with 148 additions and 102 deletions.
2 changes: 2 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@
"appveyor.yml": true,
"Dockerfile": true
},
"editor.fontFamily": "Fira Code",
"editor.fontLigatures": true,
"go.formatTool": "gofmt",
"go.formatFlags": [
"-s"
Expand Down
38 changes: 17 additions & 21 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,40 +1,36 @@
module github.com/emitter-io/emitter

go 1.13

require (
github.com/AndreasBriese/bbloom v0.0.0-20180913140656-343706a395b7 // indirect
github.com/aws/aws-sdk-go v1.17.9 // indirect
github.com/axiomhq/hyperloglog v0.0.0-20190425002754-6335aff4f64c
github.com/dgraph-io/badger v1.5.4
github.com/dgryski/go-farm v0.0.0-20180109070241-2de33835d102 // indirect
github.com/dgryski/go-metro v0.0.0-20180109044635-280f6062b5bc // indirect
github.com/AndreasBriese/bbloom v0.0.0-20190825152654-46b345b51c96 // indirect
github.com/aws/aws-sdk-go v1.25.16 // indirect
github.com/axiomhq/hyperloglog v0.0.0-20190607114936-323ed515b11c
github.com/dgraph-io/badger v1.6.0
github.com/emitter-io/address v1.0.0
github.com/emitter-io/config v1.0.0
github.com/emitter-io/stats v1.0.1
github.com/golang/protobuf v1.3.1 // indirect
github.com/golang/snappy v0.0.1
github.com/gorilla/websocket v1.4.0
github.com/gorilla/websocket v1.4.1
github.com/jawher/mow.cli v1.1.0
github.com/kelindar/binary v1.0.7
github.com/kelindar/rate v1.0.0
github.com/kelindar/tcp v1.0.0
github.com/klauspost/compress v1.5.0 // indirect
github.com/klauspost/cpuid v1.2.1 // indirect
github.com/pkg/errors v0.0.0-20181008045315-2233dee583dc // indirect
github.com/prometheus/client_golang v0.9.2
github.com/stretchr/testify v1.3.0
github.com/klauspost/compress v1.8.6 // indirect
github.com/prometheus/client_golang v1.2.1
github.com/stretchr/testify v1.4.0
github.com/tidwall/btree v0.0.0-20170113224114-9876f1454cf0 // indirect
github.com/tidwall/buntdb v1.1.0
github.com/tidwall/gjson v1.2.1 // indirect
github.com/tidwall/gjson v1.3.2 // indirect
github.com/tidwall/grect v0.0.0-20161006141115-ba9a043346eb // indirect
github.com/tidwall/match v1.0.1 // indirect
github.com/tidwall/pretty v0.0.0-20180105212114-65a9db5fad51 // indirect
github.com/tidwall/rtree v0.0.0-20180113144539-6cd427091e0e // indirect
github.com/tidwall/tinyqueue v0.0.0-20180302190814-1e39f5511563 // indirect
github.com/valyala/fasthttp v1.3.0
github.com/weaveworks/mesh v0.0.0-20190204141226-512bdb7b3cb7
golang.org/x/crypto v0.0.0-20190513172903-22d7a77e9e5f
golang.org/x/net v0.0.0-20190522155817-f3200d17e092 // indirect
golang.org/x/sys v0.0.0-20190524152521-dbbf3f1254d4 // indirect
github.com/valyala/fasthttp v1.5.0
github.com/weaveworks/mesh v0.0.0-20191011115754-8889a805f7f6
golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550
golang.org/x/net v0.0.0-20191014212845-da9a3fd4c582 // indirect
golang.org/x/sys v0.0.0-20191018095205-727590c5006e // indirect
golang.org/x/text v0.3.2 // indirect
gopkg.in/alexcesaro/statsd.v2 v2.0.0
gopkg.in/yaml.v2 v2.2.4 // indirect
)
Loading

0 comments on commit 9623e0e

Please sign in to comment.