-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathgo.mod
45 lines (36 loc) · 1.32 KB
/
go.mod
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
// Copyright lowRISC contributors (OpenTitan project).
// Licensed under the Apache License, Version 2.0, see LICENSE for details.
// SPDX-License-Identifier: Apache-2.0
module github.com/lowRISC/opentitan-provisioning
go 1.19
replace github.com/lowRISC/opentitan-provisioning => ./
// This file is used to manage dependencies for the OpenTitan Provisioning
// project. It is used by the Go toolchain to fetch dependencies and their
// transitive dependencies.
//
// To update the dependencies, run `bazel run //:update-go-repos`.
//
// This project does not support the `go mod tidy` command.
require (
// Required by Bazel golang infrastructure.
golang.org/x/tools v0.10.0
// OpenTitan Provisioning core dependencies.
github.com/golang/protobuf v1.5.2
github.com/google/go-cmp v0.5.6
github.com/google/tink/go v1.6.1
github.com/miekg/pkcs11 v1.0.3
golang.org/x/crypto v0.23.0
golang.org/x/sync v0.1.0
golang.org/x/sys v0.0.0-20211019181941-9d821ace8654
google.golang.org/api v0.32.0
google.golang.org/grpc v1.41.0
// Proxy buffer backends.
gorm.io/gorm v1.25.12
// Required by gorm.
github.com/mattn/go-sqlite3 v1.14.22
gorm.io/driver/sqlite v1.5.7
github.com/jinzhu/now v1.1.5
github.com/jinzhu/inflection v1.0.0
// Required by google.golang.org/grpc
google.golang.org/genproto v0.0.0-20210602131652-f16073e35f0c
)