blob: edc1531f31d31154c9f22c4975f1d0885abe2bc5 [file] [log] [blame]
ychacon5542d262022-02-21 14:40:38 +01001module oransc.org/usecase/oduclosedloop
2
elinuxhenrik4f0b6a92022-10-21 16:33:28 +02003go 1.19
ychacon5542d262022-02-21 14:40:38 +01004
5require github.com/sirupsen/logrus v1.8.1
6
7require (
8 github.com/gorilla/mux v1.8.0
elinuxhenrikfc743912022-07-29 12:49:07 +02009 github.com/prometheus/client_golang v1.12.2
ychacond2c54bd2022-02-28 13:29:06 +010010 github.com/stretchr/testify v1.7.0
ychacon5542d262022-02-21 14:40:38 +010011)
12
13require (
elinuxhenrikfc743912022-07-29 12:49:07 +020014 github.com/beorn7/perks v1.0.1 // indirect
elinuxhenrik41fe0612022-10-24 12:09:14 +020015 github.com/cespare/xxhash v1.1.0 // indirect
elinuxhenrikfc743912022-07-29 12:49:07 +020016 github.com/cespare/xxhash/v2 v2.1.2 // indirect
ychacon5542d262022-02-21 14:40:38 +010017 github.com/davecgh/go-spew v1.1.1 // indirect
elinuxhenrik41fe0612022-10-24 12:09:14 +020018 github.com/dgraph-io/ristretto v0.0.2 // indirect
19 github.com/fsnotify/fsnotify v1.4.9 // indirect
elinuxhenrikfc743912022-07-29 12:49:07 +020020 github.com/golang/protobuf v1.5.2 // indirect
elinuxhenrik41fe0612022-10-24 12:09:14 +020021 github.com/google/uuid v1.1.1 // indirect
22 github.com/hashicorp/hcl v1.0.0 // indirect
23 github.com/inconshreveable/mousetrap v1.0.0 // indirect
ychacond2c54bd2022-02-28 13:29:06 +010024 github.com/kr/pretty v0.2.0 // indirect
elinuxhenrik41fe0612022-10-24 12:09:14 +020025 github.com/magiconair/properties v1.8.1 // indirect
elinuxhenrikfc743912022-07-29 12:49:07 +020026 github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect
elinuxhenrik41fe0612022-10-24 12:09:14 +020027 github.com/mitchellh/mapstructure v1.3.2 // indirect
28 github.com/ory/go-acc v0.2.8 // indirect
29 github.com/ory/viper v1.7.5 // indirect
30 github.com/pborman/uuid v1.2.0 // indirect
31 github.com/pelletier/go-toml v1.8.0 // indirect
ychacon5542d262022-02-21 14:40:38 +010032 github.com/pmezard/go-difflib v1.0.0 // indirect
elinuxhenrikfc743912022-07-29 12:49:07 +020033 github.com/prometheus/client_model v0.2.0 // indirect
34 github.com/prometheus/common v0.32.1 // indirect
35 github.com/prometheus/procfs v0.7.3 // indirect
elinuxhenrik41fe0612022-10-24 12:09:14 +020036 github.com/spf13/afero v1.2.2 // indirect
37 github.com/spf13/cast v1.3.1 // indirect
38 github.com/spf13/cobra v1.0.0 // indirect
39 github.com/spf13/jwalterweatherman v1.1.0 // indirect
40 github.com/spf13/pflag v1.0.5 // indirect
41 github.com/subosito/gotenv v1.2.0 // indirect
42 golang.org/x/sys v0.0.0-20220319134239-a9b59b0215f8 // indirect
43 golang.org/x/text v0.3.6 // indirect
elinuxhenrikfc743912022-07-29 12:49:07 +020044 google.golang.org/protobuf v1.26.0 // indirect
elinuxhenrik41fe0612022-10-24 12:09:14 +020045 gopkg.in/ini.v1 v1.57.0 // indirect
46 gopkg.in/yaml.v2 v2.4.0 // indirect
ychacond2c54bd2022-02-28 13:29:06 +010047 gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c // indirect
ychacon5542d262022-02-21 14:40:38 +010048)