subhash kumar singh | 327d9db | 2021-09-30 19:07:18 +0000 | [diff] [blame] | 1 | // |
| 2 | //================================================================================== |
| 3 | // Copyright (c) 2021 Samsung |
| 4 | // |
| 5 | // Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | // you may not use this file except in compliance with the License. |
| 7 | // You may obtain a copy of the License at |
| 8 | // |
| 9 | // http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | // |
| 11 | // Unless required by applicable law or agreed to in writing, software |
| 12 | // distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | // See the License for the specific language governing permissions and |
| 15 | // limitations under the License. |
| 16 | // |
| 17 | // This source code is part of the near-RT RIC (RAN Intelligent Controller) |
| 18 | // platform project (RICP). |
| 19 | //================================================================================== |
| 20 | // |
subhash kumar singh | f8e5619 | 2021-10-07 12:28:25 +0000 | [diff] [blame] | 21 | module gerrit.o-ran-sc.org/r/ric-plt/a1 |
subhash kumar singh | 327d9db | 2021-09-30 19:07:18 +0000 | [diff] [blame] | 22 | |
wahidw | 266d69d | 2023-03-23 12:07:05 +0530 | [diff] [blame] | 23 | go 1.18 |
subhash kumar singh | 327d9db | 2021-09-30 19:07:18 +0000 | [diff] [blame] | 24 | |
czichy | 3530d65 | 2022-12-14 16:07:08 +0200 | [diff] [blame] | 25 | replace gerrit.o-ran-sc.org/r/ric-plt/sdlgo => gerrit.o-ran-sc.org/r/ric-plt/sdlgo.git v0.10.2 |
subhash kumar singh | 327d9db | 2021-09-30 19:07:18 +0000 | [diff] [blame] | 26 | |
subhash kumar singh | 6017d6a | 2021-10-26 12:14:26 +0000 | [diff] [blame] | 27 | replace gerrit.o-ran-sc.org/r/com/golog => gerrit.o-ran-sc.org/r/com/golog.git v0.0.2 |
| 28 | |
naman.gupta | 1a41ce7 | 2022-10-18 00:14:49 +0530 | [diff] [blame] | 29 | replace gerrit.o-ran-sc.org/r/ric-plt/xapp-frame => gerrit.o-ran-sc.org/r/ric-plt/xapp-frame.git v0.9.3 |
| 30 | |
subhash kumar singh | 327d9db | 2021-09-30 19:07:18 +0000 | [diff] [blame] | 31 | require ( |
naman.gupta | 3ad6de4 | 2022-04-26 21:59:05 +0530 | [diff] [blame] | 32 | gerrit.o-ran-sc.org/r/com/golog v0.0.2 |
czichy | 3530d65 | 2022-12-14 16:07:08 +0200 | [diff] [blame] | 33 | gerrit.o-ran-sc.org/r/ric-plt/sdlgo v0.10.2 |
naman.gupta | 521fb55 | 2022-12-01 18:49:35 +0530 | [diff] [blame] | 34 | gerrit.o-ran-sc.org/r/ric-plt/xapp-frame v0.0.0-00010101000000-000000000000 |
subhash kumar singh | 327d9db | 2021-09-30 19:07:18 +0000 | [diff] [blame] | 35 | github.com/go-openapi/errors v0.19.9 |
| 36 | github.com/go-openapi/loads v0.19.7 |
| 37 | github.com/go-openapi/runtime v0.19.29 |
| 38 | github.com/go-openapi/spec v0.19.15 |
| 39 | github.com/go-openapi/strfmt v0.19.11 |
| 40 | github.com/go-openapi/swag v0.19.12 |
| 41 | github.com/go-openapi/validate v0.19.15 |
| 42 | github.com/jessevdk/go-flags v1.5.0 |
naman.gupta | 0fb5207 | 2022-12-01 21:07:41 +0530 | [diff] [blame] | 43 | github.com/santhosh-tekuri/jsonschema/v5 v5.1.0 |
subhash kumar singh | 327d9db | 2021-09-30 19:07:18 +0000 | [diff] [blame] | 44 | github.com/stretchr/testify v1.6.1 |
czichy | 3530d65 | 2022-12-14 16:07:08 +0200 | [diff] [blame] | 45 | golang.org/x/net v0.0.0-20210428140749-89ef3d95e781 |
naman.gupta | 0fb5207 | 2022-12-01 21:07:41 +0530 | [diff] [blame] | 46 | gopkg.in/yaml.v2 v2.4.0 |
naman.gupta | ad87645 | 2023-05-09 15:31:52 +0530 | [diff] [blame] | 47 | github.com/spf13/viper v1.7.0 |
wahidw | 266d69d | 2023-03-23 12:07:05 +0530 | [diff] [blame] | 48 | ) |
naman.gupta | 521fb55 | 2022-12-01 18:49:35 +0530 | [diff] [blame] | 49 | |
wahidw | 266d69d | 2023-03-23 12:07:05 +0530 | [diff] [blame] | 50 | require ( |
| 51 | gerrit.o-ran-sc.org/r/ric-plt/alarm-go.git/alarm v0.5.0 // indirect |
| 52 | gerrit.o-ran-sc.org/r/ric-plt/nodeb-rnib.git/common v1.2.1 // indirect |
| 53 | gerrit.o-ran-sc.org/r/ric-plt/nodeb-rnib.git/entities v1.2.1 // indirect |
| 54 | gerrit.o-ran-sc.org/r/ric-plt/nodeb-rnib.git/reader v1.2.1 // indirect |
| 55 | github.com/PuerkitoBio/purell v1.1.1 // indirect |
| 56 | github.com/PuerkitoBio/urlesc v0.0.0-20170810143723-de5bf2ad4578 // indirect |
| 57 | github.com/asaskevich/govalidator v0.0.0-20200907205600-7a23bdc65eef // indirect |
| 58 | github.com/beorn7/perks v1.0.0 // indirect |
| 59 | github.com/cespare/xxhash/v2 v2.1.2 // indirect |
| 60 | github.com/davecgh/go-spew v1.1.1 // indirect |
| 61 | github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect |
| 62 | github.com/docker/go-units v0.4.0 // indirect |
| 63 | github.com/fsnotify/fsnotify v1.4.9 // indirect |
| 64 | github.com/go-openapi/analysis v0.19.16 // indirect |
| 65 | github.com/go-openapi/jsonpointer v0.19.5 // indirect |
| 66 | github.com/go-openapi/jsonreference v0.19.5 // indirect |
| 67 | github.com/go-redis/redis/v8 v8.11.4 // indirect |
| 68 | github.com/go-stack/stack v1.8.0 // indirect |
| 69 | github.com/golang/protobuf v1.5.2 // indirect |
| 70 | github.com/gorilla/mux v1.7.1 // indirect |
| 71 | github.com/hashicorp/hcl v1.0.0 // indirect |
| 72 | github.com/josharian/intern v1.0.0 // indirect |
| 73 | github.com/magiconair/properties v1.8.1 // indirect |
| 74 | github.com/mailru/easyjson v0.7.6 // indirect |
| 75 | github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect |
| 76 | github.com/mitchellh/mapstructure v1.4.0 // indirect |
| 77 | github.com/opentracing/opentracing-go v1.2.0 // indirect |
| 78 | github.com/pelletier/go-toml v1.7.0 // indirect |
| 79 | github.com/pmezard/go-difflib v1.0.0 // indirect |
| 80 | github.com/prometheus/client_golang v0.9.3 // indirect |
| 81 | github.com/prometheus/client_model v0.0.0-20190129233127-fd36f4220a90 // indirect |
| 82 | github.com/prometheus/common v0.4.0 // indirect |
| 83 | github.com/prometheus/procfs v0.0.0-20190507164030-5867b95ac084 // indirect |
| 84 | github.com/spf13/afero v1.2.2 // indirect |
| 85 | github.com/spf13/cast v1.3.0 // indirect |
| 86 | github.com/spf13/jwalterweatherman v1.0.0 // indirect |
| 87 | github.com/spf13/pflag v1.0.5 // indirect |
| 88 | github.com/spf13/viper v1.7.0 // indirect |
| 89 | github.com/stretchr/objx v0.2.0 // indirect |
| 90 | github.com/subosito/gotenv v1.2.0 // indirect |
| 91 | go.mongodb.org/mongo-driver v1.4.3 // indirect |
| 92 | golang.org/x/sys v0.0.0-20210423082822-04245dca01da // indirect |
| 93 | golang.org/x/text v0.3.6 // indirect |
| 94 | google.golang.org/protobuf v1.26.0 // indirect |
| 95 | gopkg.in/ini.v1 v1.51.0 // indirect |
| 96 | gopkg.in/yaml.v3 v3.0.0-20200615113413-eeeca48fe776 // indirect |
| 97 | k8s.io/utils v0.0.0-20210930125809-cb0fa318a74b // indirect |
subhash kumar singh | 327d9db | 2021-09-30 19:07:18 +0000 | [diff] [blame] | 98 | ) |