-
Notifications
You must be signed in to change notification settings - Fork 1
/
go.mod
42 lines (37 loc) · 1.33 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
module github.com/posit-dev/publisher
go 1.23.1
require (
github.com/PuerkitoBio/purell v1.2.1
github.com/alecthomas/kong v0.9.0
github.com/google/uuid v1.6.0
github.com/gorilla/mux v1.8.1
github.com/mitchellh/mapstructure v1.5.0
github.com/pelletier/go-toml/v2 v2.2.2
github.com/pkg/browser v0.0.0-20240102092130-5ac0b6a4141c
github.com/r3labs/sse/v2 v2.10.0
github.com/rs/cors v1.11.0
github.com/santhosh-tekuri/jsonschema/v5 v5.3.1
github.com/spf13/afero v1.11.0
github.com/stretchr/testify v1.9.0
golang.org/x/net v0.25.0
)
require golang.org/x/crypto v0.26.0 // indirect
require (
github.com/alessio/shellescape v1.4.2 // indirect
github.com/danieljoos/wincred v1.2.1 // indirect
github.com/godbus/dbus/v5 v5.1.0 // indirect
google.golang.org/protobuf v1.34.2 // indirect DON'T REMOVE, this is here to force a more recent version
)
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/kr/pretty v0.3.0 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/rogpeppe/go-internal v1.8.0 // indirect
github.com/stretchr/objx v0.5.2 // indirect
github.com/zalando/go-keyring v0.2.5
golang.org/x/sys v0.23.0 // indirect
golang.org/x/text v0.17.0 // indirect
gopkg.in/cenkalti/backoff.v1 v1.1.0 // indirect
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
gopkg.in/yaml.v3 v3.0.1
)