File tree Expand file tree Collapse file tree 5 files changed +7
-4
lines changed Expand file tree Collapse file tree 5 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ install:
55
55
go get -u github.com/tinylib/msgp
56
56
go get -u github.com/andyleap/gencode
57
57
go get -u github.com/mailru/easyjson/...
58
- go get -u github.com/DeDiS /protobuf
58
+ go get -u go.dedis.ch /protobuf
59
59
go get -u github.com/Sereal/Sereal/Go/sereal
60
60
go get -u github.com/alecthomas/binary
61
61
go get -u github.com/davecgh/go-xdr/xdr
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ This is a test suite for benchmarking various Go serialization methods.
18
18
- [ github.com/tinylib/msgp] ( https://github.com/tinylib/msgp ) * (code generator for msgpack)*
19
19
- [ github.com/golang/protobuf] ( https://github.com/golang/protobuf ) (generated code)
20
20
- [ github.com/gogo/protobuf] ( https://github.com/gogo/protobuf ) (generated code, optimized version of ` goprotobuf ` )
21
- - [ github.com/DeDiS/ protobuf] ( https://github.com/DeDiS /protobuf ) (reflection based)
21
+ - [ go.dedis.ch/ protobuf] ( https://go.dedis.ch /protobuf ) (reflection based)
22
22
- [ github.com/google/flatbuffers] ( https://github.com/google/flatbuffers )
23
23
- [ github.com/hprose/hprose-go/io] ( https://github.com/hprose/hprose-go )
24
24
- [ github.com/glycerine/go-capnproto] ( https://github.com/glycerine/go-capnproto )
Original file line number Diff line number Diff line change
1
+ module github.com/alecthomas/go_serialization_benchmarks
2
+
3
+ go 1.12
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ import (
15
15
"github.com/niubaoshu/gotiny"
16
16
capnp "zombiezen.com/go/capnproto2"
17
17
18
- "github.com/DeDiS /protobuf"
18
+ "go.dedis.ch /protobuf"
19
19
"github.com/Sereal/Sereal/Go/sereal"
20
20
"github.com/davecgh/go-xdr/xdr"
21
21
capn "github.com/glycerine/go-capnproto"
@@ -812,7 +812,7 @@ func BenchmarkHprose2Unmarshal(b *testing.B) {
812
812
benchUnmarshal (b , & Hprose2Serializer {writer : writer , reader : reader })
813
813
}
814
814
815
- // github.com/DeDiS /protobuf
815
+ // go.dedis.ch /protobuf
816
816
817
817
type ProtobufSerializer struct {}
818
818
You can’t perform that action at this time.
0 commit comments