tenseleyflow/shithub / b068f3d

Browse files

go.mod: add ProtonMail/go-crypto for OpenPGP parsing

Authored by mfwolffe <wolffemf@dukes.jmu.edu>
SHA
b068f3d7ae687745209088086c23ba49e7876710
Parents
55b6bb7
Tree
bcd1946

2 changed files

StatusFile+-
M go.mod 5 3
M go.sum 4 0
go.modmodified
@@ -4,6 +4,7 @@ go 1.26.2
44
 
55
 require (
66
 	github.com/BurntSushi/toml v1.6.0
7
+	github.com/ProtonMail/go-crypto v1.4.1
78
 	github.com/alecthomas/chroma/v2 v2.24.1
89
 	github.com/bluekeyes/go-gitdiff v0.8.1
910
 	github.com/boombuler/barcode v1.0.1-0.20190219062509-6c824513bacc
@@ -16,7 +17,10 @@ require (
1617
 	github.com/pquerna/otp v1.5.0
1718
 	github.com/pressly/goose/v3 v3.27.1
1819
 	github.com/prometheus/client_golang v1.23.2
20
+	github.com/prometheus/client_model v0.6.2
1921
 	github.com/spf13/cobra v1.10.2
22
+	github.com/spf13/pflag v1.0.9
23
+	github.com/stripe/stripe-go/v85 v85.1.0
2024
 	github.com/yuin/goldmark v1.8.2
2125
 	go.opentelemetry.io/otel v1.43.0
2226
 	go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.43.0
@@ -35,6 +39,7 @@ require (
3539
 	github.com/beorn7/perks v1.0.1 // indirect
3640
 	github.com/cenkalti/backoff/v5 v5.0.3 // indirect
3741
 	github.com/cespare/xxhash/v2 v2.3.0 // indirect
42
+	github.com/cloudflare/circl v1.6.2 // indirect
3843
 	github.com/dlclark/regexp2 v1.12.0 // indirect
3944
 	github.com/dustin/go-humanize v1.0.1 // indirect
4045
 	github.com/go-ini/ini v1.67.0 // indirect
@@ -55,13 +60,10 @@ require (
5560
 	github.com/minio/md5-simd v1.1.2 // indirect
5661
 	github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
5762
 	github.com/philhofer/fwd v1.2.0 // indirect
58
-	github.com/prometheus/client_model v0.6.2 // indirect
5963
 	github.com/prometheus/common v0.66.1 // indirect
6064
 	github.com/prometheus/procfs v0.20.1 // indirect
6165
 	github.com/rs/xid v1.6.0 // indirect
6266
 	github.com/sethvargo/go-retry v0.3.0 // indirect
63
-	github.com/spf13/pflag v1.0.9 // indirect
64
-	github.com/stripe/stripe-go/v85 v85.1.0 // indirect
6567
 	github.com/tinylib/msgp v1.6.1 // indirect
6668
 	github.com/zeebo/xxh3 v1.1.0 // indirect
6769
 	go.opentelemetry.io/auto/sdk v1.2.1 // indirect
go.summodified
@@ -1,5 +1,7 @@
11
 github.com/BurntSushi/toml v1.6.0 h1:dRaEfpa2VI55EwlIW72hMRHdWouJeRF7TPYhI+AUQjk=
22
 github.com/BurntSushi/toml v1.6.0/go.mod h1:ukJfTF/6rtPPRCnwkur4qwRxa8vTRFBF0uk2lLoLwho=
3
+github.com/ProtonMail/go-crypto v1.4.1 h1:9RfcZHqEQUvP8RzecWEUafnZVtEvrBVL9BiF67IQOfM=
4
+github.com/ProtonMail/go-crypto v1.4.1/go.mod h1:e1OaTyu5SYVrO9gKOEhTc+5UcXtTUa+P3uLudwcgPqo=
35
 github.com/alecthomas/assert/v2 v2.11.0 h1:2Q9r3ki8+JYXvGsDyBXwH3LcJ+WK5D0gc5E8vS6K3D0=
46
 github.com/alecthomas/assert/v2 v2.11.0/go.mod h1:Bze95FyfUr7x34QZrjL+XP+0qgp/zg8yS+TtBj1WA3k=
57
 github.com/alecthomas/chroma/v2 v2.24.1 h1:m5ffpfZbIb++k8AqFEKy9uVgY12xIQtBsQlc6DfZJQM=
@@ -18,6 +20,8 @@ github.com/cenkalti/backoff/v5 v5.0.3 h1:ZN+IMa753KfX5hd8vVaMixjnqRZ3y8CuJKRKj1x
1820
 github.com/cenkalti/backoff/v5 v5.0.3/go.mod h1:rkhZdG3JZukswDf7f0cwqPNk4K0sa+F97BxZthm/crw=
1921
 github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs=
2022
 github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs=
23
+github.com/cloudflare/circl v1.6.2 h1:hL7VBpHHKzrV5WTfHCaBsgx/HGbBYlgrwvNXEVDYYsQ=
24
+github.com/cloudflare/circl v1.6.2/go.mod h1:2eXP6Qfat4O/Yhh8BznvKnJ+uzEoTQ6jVKJRn81BiS4=
2125
 github.com/cpuguy83/go-md2man/v2 v2.0.6/go.mod h1:oOW0eioCTA6cOiMLiUPZOpcVxMig6NIQQ7OS05n1F4g=
2226
 github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
2327
 github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=