Skip to content

Commit 61a7ec5

Browse files
authored
support self-describing CBOR again (#37)
Upstream has added support in master for tag 55799: fxamacker/cbor#227
1 parent e396edc commit 61a7ec5

File tree

3 files changed

+3
-6
lines changed

3 files changed

+3
-6
lines changed

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
module github.com/philandstuff/dhall-golang
22

33
require (
4-
github.com/fxamacker/cbor/v2 v2.2.0
4+
github.com/fxamacker/cbor/v2 v2.2.1-0.20200511212021-28e39be4a84f
55
github.com/kr/pretty v0.1.0 // indirect
66
github.com/leanovate/gopter v0.2.5-0.20190402064358-634a59d12406
77
github.com/onsi/ginkgo v1.7.0

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
github.com/fsnotify/fsnotify v1.4.7 h1:IXs+QLmnXW2CcXuY+8Mzv/fWEsPGWxqefPtCP5CnV9I=
22
github.com/fsnotify/fsnotify v1.4.7/go.mod h1:jwhsz4b93w/PPRr/qN1Yymfu8t87LnFCMoQvtojpjFo=
3-
github.com/fxamacker/cbor/v2 v2.2.0 h1:6eXqdDDe588rSYAi1HfZKbx6YYQO4mxQ9eC6xYpU/JQ=
4-
github.com/fxamacker/cbor/v2 v2.2.0/go.mod h1:TA1xS00nchWmaBnEIxPSE5oHLuJBAVvqrtAnWBwBCVo=
3+
github.com/fxamacker/cbor/v2 v2.2.1-0.20200511212021-28e39be4a84f h1:lvGFo/tDOSQ4FKu0d2694s8XyOfAL6FLR9DCD5BIUW4=
4+
github.com/fxamacker/cbor/v2 v2.2.1-0.20200511212021-28e39be4a84f/go.mod h1:TA1xS00nchWmaBnEIxPSE5oHLuJBAVvqrtAnWBwBCVo=
55
github.com/golang/protobuf v1.2.0 h1:P3YflyNX/ehuJFLhxviNdFxQPkGK5cDcApsge1SqnvM=
66
github.com/golang/protobuf v1.2.0/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U=
77
github.com/hpcloud/tail v1.0.0 h1:nfCOvKYfkgYP8hkirhJocXT2+zOD8yUNjXaWfTlyFKI=

spec_test.go

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,9 +65,6 @@ var expectedFailures = []string{
6565

6666
// We don't cache the same URL within the same run
6767
"TestTypeInference/CacheImports",
68-
69-
// self-describing cbor https://github.com/fxamacker/cbor/issues/227
70-
"TestBinaryDecode/unit/SelfDescribe",
7168
}
7269

7370
func pass(t *testing.T) {

0 commit comments

Comments
 (0)