aboutsummaryrefslogtreecommitdiff
path: root/go.mod
diff options
context:
space:
mode:
authorRasmus Dahlberg <rasmus.dahlberg@kau.se>2021-02-25 14:36:35 +0100
committerRasmus Dahlberg <rasmus.dahlberg@kau.se>2021-02-25 14:36:35 +0100
commitc05c22ddbc771e7713849cae40f9d91bfafa0503 (patch)
treeb97d11ab2a914806e6f671f9aff1cab9767b2eab /go.mod
parentc9b4b43654f0ff26207cc63449f13298cd3c56e8 (diff)
major refactor based on README.md and TODOs
Updated types, improved units tests, isolated most test data to have it in one place, renamed and created new files to improve readability, and fixed a bunch of minor TODOs.
Diffstat (limited to 'go.mod')
-rw-r--r--go.mod12
1 files changed, 12 insertions, 0 deletions
diff --git a/go.mod b/go.mod
new file mode 100644
index 0000000..af0c837
--- /dev/null
+++ b/go.mod
@@ -0,0 +1,12 @@
+module github.com/system-transparency/stfe
+
+go 1.16
+
+require (
+ github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b
+ github.com/golang/mock v1.4.4
+ github.com/google/certificate-transparency-go v1.1.1
+ github.com/google/trillian v1.3.13
+ github.com/prometheus/client_golang v1.9.0 // indirect
+ google.golang.org/grpc v1.35.0
+)