Skip to content

Commit

Permalink
Upgrade deps.
Browse files Browse the repository at this point in the history
  • Loading branch information
q-uint committed Nov 4, 2023
1 parent f772612 commit c8becbe
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 18 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v2
- uses: actions/checkout@v4
- uses: actions/setup-go@v4
with:
go-version: '1.20'
- uses: aviate-labs/[email protected].3
go-version: '1.21.0'
- uses: aviate-labs/[email protected].6
with:
dfx-version: 0.13.1
dfx-version: 0.15.1
- run: make test
2 changes: 1 addition & 1 deletion candid/idl/tdt.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package idl

import (
"golang.org/x/exp/slices"
"slices"
)

type TypeDefinitionTable struct {
Expand Down
2 changes: 1 addition & 1 deletion certificate/certificate.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"github.com/aviate-labs/agent-go/certificate/bls"
"github.com/aviate-labs/agent-go/principal"
"github.com/fxamacker/cbor/v2"
"golang.org/x/exp/slices"
"slices"
)

// Cert is a certificate gets returned by the IC.
Expand Down
7 changes: 3 additions & 4 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
module github.com/aviate-labs/agent-go

go 1.20
go 1.21.0

require (
github.com/aviate-labs/leb128 v0.3.0
github.com/aviate-labs/secp256k1 v0.0.0-5e6736a
github.com/di-wu/parser v0.3.0
github.com/fxamacker/cbor/v2 v2.4.0
github.com/herumi/bls-go-binary v1.28.2
golang.org/x/exp v0.0.0-20230515195305-f3d0a9c9a5cc
github.com/fxamacker/cbor/v2 v2.5.0
github.com/herumi/bls-go-binary v1.32.0
)

require github.com/x448/float16 v0.8.4 // indirect
10 changes: 4 additions & 6 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,9 @@ github.com/aviate-labs/secp256k1 v0.0.0-5e6736a h1:aQkG/D+l8Y7tr809l8pN+KebH2jza
github.com/aviate-labs/secp256k1 v0.0.0-5e6736a/go.mod h1:C/lr3F9TimrVkdZckG5mz+VU0TrmpeyVKUjzv2YyGwA=
github.com/di-wu/parser v0.3.0 h1:NMOvy5ifswgt4gsdhySVcKOQtvjC43cHZIfViWctqQY=
github.com/di-wu/parser v0.3.0/go.mod h1:SLp58pW6WamdmznrVRrw2NTyn4wAvT9rrEFynKX7nYo=
github.com/fxamacker/cbor/v2 v2.4.0 h1:ri0ArlOR+5XunOP8CRUowT0pSJOwhW098ZCUyskZD88=
github.com/fxamacker/cbor/v2 v2.4.0/go.mod h1:TA1xS00nchWmaBnEIxPSE5oHLuJBAVvqrtAnWBwBCVo=
github.com/herumi/bls-go-binary v1.28.2 h1:F0AezsC0M1a9aZjk7g0l2hMb1F56Xtpfku97pDndNZE=
github.com/herumi/bls-go-binary v1.28.2/go.mod h1:O4Vp1AfR4raRGwFeQpr9X/PQtncEicMoOe6BQt1oX0Y=
github.com/fxamacker/cbor/v2 v2.5.0 h1:oHsG0V/Q6E/wqTS2O1Cozzsy69nqCiguo5Q1a1ADivE=
github.com/fxamacker/cbor/v2 v2.5.0/go.mod h1:TA1xS00nchWmaBnEIxPSE5oHLuJBAVvqrtAnWBwBCVo=
github.com/herumi/bls-go-binary v1.32.0 h1:QX0+mmrCyBNpaVwYahl85yWnxYKDPpNAPIZWOIpP+eU=
github.com/herumi/bls-go-binary v1.32.0/go.mod h1:O4Vp1AfR4raRGwFeQpr9X/PQtncEicMoOe6BQt1oX0Y=
github.com/x448/float16 v0.8.4 h1:qLwI1I70+NjRFUR3zs1JPUCgaCXSh3SW62uAKT1mSBM=
github.com/x448/float16 v0.8.4/go.mod h1:14CWIYCyZA/cWjXOioeEpHeN/83MdbZDRQHoFcYsOfg=
golang.org/x/exp v0.0.0-20230515195305-f3d0a9c9a5cc h1:mCRnTeVUjcrhlRmO0VK8a6k6Rrf6TF9htwo2pJVSjIU=
golang.org/x/exp v0.0.0-20230515195305-f3d0a9c9a5cc/go.mod h1:V1LtkGg67GoY2N1AnLN78QLrzxkLyJw7RJb1gzOOz9w=
2 changes: 1 addition & 1 deletion identity/secp256k1.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"fmt"
"github.com/aviate-labs/agent-go/principal"
"github.com/aviate-labs/secp256k1"
"golang.org/x/exp/slices"
"slices"
)

var secp256k1OID = asn1.ObjectIdentifier{1, 3, 132, 0, 10}
Expand Down

0 comments on commit c8becbe

Please sign in to comment.