This repository has been archived by the owner on Jun 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 99
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: norbjd <norbjd@users.noreply.github.com>
- Loading branch information
Showing
8 changed files
with
461 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
# avoid "C++ versions less than C++14 are not supported." errors | ||
build --host_cxxopt=-std=c++14 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
6.2.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
load("@io_bazel_rules_go//go:def.bzl", "go_library") | ||
load("@bazel_gazelle//:def.bzl", "gazelle") | ||
|
||
# gazelle:prefix github.com/chrusty/protoc-gen-jsonschema | ||
# gazelle:go_generate_proto false | ||
# gazelle:proto disable | ||
gazelle(name = "gazelle") | ||
|
||
# adding rule to update deps | ||
gazelle( | ||
name = "gazelle-update-repos", | ||
args = [ | ||
"-from_file=go.mod", | ||
"-to_macro=deps.bzl%go_dependencies", | ||
"-prune", | ||
], | ||
command = "update-repos", | ||
) | ||
|
||
go_library( | ||
name = "protoc-gen-jsonschema", | ||
srcs = ["options.pb.go"], | ||
importpath = "github.com/chrusty/protoc-gen-jsonschema", | ||
visibility = ["//visibility:public"], | ||
deps = [ | ||
"@org_golang_google_protobuf//reflect/protoreflect", | ||
"@org_golang_google_protobuf//runtime/protoimpl", | ||
"@org_golang_google_protobuf//types/descriptorpb", | ||
], | ||
) | ||
|
||
exports_files(["deps.bzl"]) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") | ||
|
||
http_archive( | ||
name = "io_bazel_rules_go", | ||
sha256 = "6dc2da7ab4cf5d7bfc7c949776b1b7c733f05e56edc4bcd9022bb249d2e2a996", | ||
urls = [ | ||
"https://mirror.bazel.build/github.com/bazelbuild/rules_go/releases/download/v0.39.1/rules_go-v0.39.1.zip", | ||
"https://github.com/bazelbuild/rules_go/releases/download/v0.39.1/rules_go-v0.39.1.zip", | ||
], | ||
) | ||
|
||
http_archive( | ||
name = "bazel_gazelle", | ||
sha256 = "727f3e4edd96ea20c29e8c2ca9e8d2af724d8c7778e7923a854b2c80952bc405", | ||
urls = [ | ||
"https://mirror.bazel.build/github.com/bazelbuild/bazel-gazelle/releases/download/v0.30.0/bazel-gazelle-v0.30.0.tar.gz", | ||
"https://github.com/bazelbuild/bazel-gazelle/releases/download/v0.30.0/bazel-gazelle-v0.30.0.tar.gz", | ||
], | ||
) | ||
|
||
http_archive( | ||
name = "com_google_protobuf", | ||
sha256 = "72bae766561149f8507a81647f91fc519d2a60309613f004ed307cb5f9b1242b", | ||
strip_prefix = "protobuf-23.1", | ||
urls = [ | ||
"https://github.com/protocolbuffers/protobuf/releases/download/v23.1/protobuf-23.1.tar.gz", | ||
], | ||
) | ||
|
||
load("@io_bazel_rules_go//go:deps.bzl", "go_register_toolchains", "go_rules_dependencies") | ||
load("@bazel_gazelle//:deps.bzl", "gazelle_dependencies") | ||
load("@com_google_protobuf//:protobuf_deps.bzl", "protobuf_deps") | ||
load("//:deps.bzl", "go_dependencies") | ||
|
||
go_register_toolchains(version = "1.20.4") | ||
|
||
go_rules_dependencies() | ||
|
||
gazelle_dependencies() | ||
|
||
# gazelle:repository_macro deps.bzl%go_dependencies | ||
go_dependencies() | ||
|
||
protobuf_deps() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_library") | ||
|
||
go_library( | ||
name = "protoc-gen-jsonschema_lib", | ||
srcs = ["main.go"], | ||
importpath = "github.com/chrusty/protoc-gen-jsonschema/cmd/protoc-gen-jsonschema", | ||
visibility = ["//visibility:private"], | ||
deps = [ | ||
"//internal/converter", | ||
"@com_github_sirupsen_logrus//:logrus", | ||
"@org_golang_google_protobuf//proto", | ||
"@org_golang_google_protobuf//types/pluginpb", | ||
], | ||
) | ||
|
||
go_binary( | ||
name = "protoc-gen-jsonschema", | ||
embed = [":protoc-gen-jsonschema_lib"], | ||
visibility = ["//visibility:public"], | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,251 @@ | ||
# Generated by gazelle | ||
# Only "com_github_xeipuuv_gojsonreference" go_repository has been modified manually: build_external = "external" has been included | ||
|
||
load("@bazel_gazelle//:deps.bzl", "go_repository") | ||
|
||
def go_dependencies(): | ||
go_repository( | ||
name = "com_github_alecthomas_jsonschema", | ||
importpath = "github.com/alecthomas/jsonschema", | ||
sum = "h1:SM/PhkjhbeX1w/Jkv7dHFYDn2y4/88XZp3CIqVHsdcs=", | ||
version = "v0.0.0-20210918223802-a1d3f4b43d7b", | ||
) | ||
go_repository( | ||
name = "com_github_davecgh_go_spew", | ||
importpath = "github.com/davecgh/go-spew", | ||
sum = "h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=", | ||
version = "v1.1.1", | ||
) | ||
go_repository( | ||
name = "com_github_envoyproxy_protoc_gen_validate", | ||
importpath = "github.com/envoyproxy/protoc-gen-validate", | ||
sum = "h1:c0g45+xCJhdgFGw7a5QAfdS4byAbud7miNWJ1WwEVf8=", | ||
version = "v0.10.1", | ||
) | ||
|
||
go_repository( | ||
name = "com_github_fatih_camelcase", | ||
importpath = "github.com/fatih/camelcase", | ||
sum = "h1:hxNvNX/xYBp0ovncs8WyWZrOrpBNub/JfaMvbURyft8=", | ||
version = "v1.0.0", | ||
) | ||
go_repository( | ||
name = "com_github_golang_protobuf", | ||
importpath = "github.com/golang/protobuf", | ||
sum = "h1:LUVKkCeviFUMKqHa4tXIIij/lbhnMbP7Fn5wKdKkRh4=", | ||
version = "v1.5.0", | ||
) | ||
go_repository( | ||
name = "com_github_google_go_cmp", | ||
importpath = "github.com/google/go-cmp", | ||
sum = "h1:Khx7svrCpmxxtHBq5j2mp/xVjsi8hQMfNLvJFAlrGgU=", | ||
version = "v0.5.5", | ||
) | ||
go_repository( | ||
name = "com_github_iancoleman_orderedmap", | ||
importpath = "github.com/iancoleman/orderedmap", | ||
sum = "h1:sq1N/TFpYH++aViPcaKjys3bDClUEU7s5B+z6jq8pNA=", | ||
version = "v0.2.0", | ||
) | ||
go_repository( | ||
name = "com_github_iancoleman_strcase", | ||
importpath = "github.com/iancoleman/strcase", | ||
sum = "h1:05I4QRnGpI0m37iZQRuskXh+w77mr6Z41lwQzuHLwW0=", | ||
version = "v0.2.0", | ||
) | ||
go_repository( | ||
name = "com_github_konsorten_go_windows_terminal_sequences", | ||
importpath = "github.com/konsorten/go-windows-terminal-sequences", | ||
sum = "h1:DB17ag19krx9CFsz4o3enTrPXyIXCl+2iCXH/aMAp9s=", | ||
version = "v1.0.2", | ||
) | ||
go_repository( | ||
name = "com_github_kr_fs", | ||
importpath = "github.com/kr/fs", | ||
sum = "h1:Jskdu9ieNAYnjxsi0LbQp1ulIKZV1LAFgK1tWhpZgl8=", | ||
version = "v0.1.0", | ||
) | ||
|
||
go_repository( | ||
name = "com_github_kr_pretty", | ||
importpath = "github.com/kr/pretty", | ||
sum = "h1:L/CwN0zerZDmRFUapSPitk6f+Q3+0za1rQkzVuMiMFI=", | ||
version = "v0.1.0", | ||
) | ||
go_repository( | ||
name = "com_github_kr_pty", | ||
importpath = "github.com/kr/pty", | ||
sum = "h1:VkoXIwSboBpnk99O/KFauAEILuNHv5DVFKZMBN/gUgw=", | ||
version = "v1.1.1", | ||
) | ||
go_repository( | ||
name = "com_github_kr_text", | ||
importpath = "github.com/kr/text", | ||
sum = "h1:45sCR5RtlFHMR4UwH9sdQ5TC8v0qDQCHnXt+kaKSTVE=", | ||
version = "v0.1.0", | ||
) | ||
go_repository( | ||
name = "com_github_lyft_protoc_gen_star_v2", | ||
importpath = "github.com/lyft/protoc-gen-star/v2", | ||
sum = "h1:keaAo8hRuAT0O3DfJ/wM3rufbAjGeJ1lAtWZHDjKGB0=", | ||
version = "v2.0.1", | ||
) | ||
go_repository( | ||
name = "com_github_pkg_errors", | ||
importpath = "github.com/pkg/errors", | ||
sum = "h1:iURUrRGxPUNPdy5/HRSm+Yj6okJ6UtLINN0Q9M4+h3I=", | ||
version = "v0.8.1", | ||
) | ||
go_repository( | ||
name = "com_github_pkg_sftp", | ||
importpath = "github.com/pkg/sftp", | ||
sum = "h1:VasscCm72135zRysgrJDKsntdmPN+OuU3+nnHYA9wyc=", | ||
version = "v1.10.1", | ||
) | ||
|
||
go_repository( | ||
name = "com_github_pmezard_go_difflib", | ||
importpath = "github.com/pmezard/go-difflib", | ||
sum = "h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=", | ||
version = "v1.0.0", | ||
) | ||
go_repository( | ||
name = "com_github_sirupsen_logrus", | ||
importpath = "github.com/sirupsen/logrus", | ||
sum = "h1:SPIRibHv4MatM3XXNO2BJeFLZwZ2LvZgfQ5+UNI2im4=", | ||
version = "v1.4.2", | ||
) | ||
go_repository( | ||
name = "com_github_spf13_afero", | ||
importpath = "github.com/spf13/afero", | ||
sum = "h1:p5gZEKLYoL7wh8VrJesMaYeNxdEd1v3cb4irOk9zB54=", | ||
version = "v1.3.3", | ||
) | ||
|
||
go_repository( | ||
name = "com_github_stretchr_objx", | ||
importpath = "github.com/stretchr/objx", | ||
sum = "h1:2vfRuCMp5sSVIDSqO8oNnWJq7mPa6KVP3iPIwFBuy8A=", | ||
version = "v0.1.1", | ||
) | ||
go_repository( | ||
name = "com_github_stretchr_testify", | ||
importpath = "github.com/stretchr/testify", | ||
sum = "h1:hDPOHmpOpP40lSULcqw7IrRb/u7w6RpDC9399XyoNd0=", | ||
version = "v1.6.1", | ||
) | ||
go_repository( | ||
name = "com_github_xeipuuv_gojsonpointer", | ||
importpath = "github.com/xeipuuv/gojsonpointer", | ||
sum = "h1:6cLsL+2FW6dRAdl5iMtHgRogVCff0QpRi9653YmdcJA=", | ||
version = "v0.0.0-20190809123943-df4f5c81cb3b", | ||
) | ||
go_repository( | ||
name = "com_github_xeipuuv_gojsonreference", | ||
build_external = "external", | ||
importpath = "github.com/xeipuuv/gojsonreference", | ||
sum = "h1:EzJWgHovont7NscjpAxXsDA8S8BMYve8Y5+7cuRE7R0=", | ||
version = "v0.0.0-20180127040603-bd5ef7bd5415", | ||
) | ||
go_repository( | ||
name = "com_github_xeipuuv_gojsonschema", | ||
importpath = "github.com/xeipuuv/gojsonschema", | ||
sum = "h1:LhYJRs+L4fBtjZUfuSZIKGeVu0QRy8e5Xi7D17UxZ74=", | ||
version = "v1.2.0", | ||
) | ||
go_repository( | ||
name = "com_github_yuin_goldmark", | ||
importpath = "github.com/yuin/goldmark", | ||
sum = "h1:fVcFKWvrslecOb/tg+Cc05dkeYx540o0FuFt3nUVDoE=", | ||
version = "v1.4.13", | ||
) | ||
|
||
go_repository( | ||
name = "in_gopkg_check_v1", | ||
importpath = "gopkg.in/check.v1", | ||
sum = "h1:qIbj1fsPNlZgppZ+VLlY7N33q108Sa+fhmuc+sWQYwY=", | ||
version = "v1.0.0-20180628173108-788fd7840127", | ||
) | ||
go_repository( | ||
name = "in_gopkg_yaml_v2", | ||
importpath = "gopkg.in/yaml.v2", | ||
sum = "h1:ZCJp+EgiOT7lHqUV2J862kp8Qj64Jo6az82+3Td9dZw=", | ||
version = "v2.2.2", | ||
) | ||
|
||
go_repository( | ||
name = "in_gopkg_yaml_v3", | ||
importpath = "gopkg.in/yaml.v3", | ||
sum = "h1:dUUwHk2QECo/6vqA44rthZ8ie2QXMNeKRTHCNY2nXvo=", | ||
version = "v3.0.0-20200313102051-9f266ea9e77c", | ||
) | ||
go_repository( | ||
name = "org_golang_google_protobuf", | ||
importpath = "google.golang.org/protobuf", | ||
sum = "h1:kPPoIgf3TsEvrm0PFe15JQ+570QVxYzEvvHqChK+cng=", | ||
version = "v1.30.0", | ||
) | ||
go_repository( | ||
name = "org_golang_x_crypto", | ||
importpath = "golang.org/x/crypto", | ||
sum = "h1:7I4JAnoQBe7ZtJcBaYHi5UtiO8tQHbUSXxL+pnGRANg=", | ||
version = "v0.0.0-20210921155107-089bfa567519", | ||
) | ||
|
||
go_repository( | ||
name = "org_golang_x_lint", | ||
importpath = "golang.org/x/lint", | ||
sum = "h1:VLliZ0d+/avPrXXH+OakdXhpJuEoBZuwh1m2j7U6Iug=", | ||
version = "v0.0.0-20210508222113-6edffad5e616", | ||
) | ||
go_repository( | ||
name = "org_golang_x_mod", | ||
importpath = "golang.org/x/mod", | ||
sum = "h1:KENHtAZL2y3NLMYZeHY9DW8HW8V+kQyJsY/V9JlKvCs=", | ||
version = "v0.9.0", | ||
) | ||
go_repository( | ||
name = "org_golang_x_net", | ||
importpath = "golang.org/x/net", | ||
sum = "h1:Zrh2ngAOFYneWTAIAPethzeaQLuHwhuBkuV6ZiRnUaQ=", | ||
version = "v0.8.0", | ||
) | ||
go_repository( | ||
name = "org_golang_x_sync", | ||
importpath = "golang.org/x/sync", | ||
sum = "h1:wsuoTGHzEhffawBOhz5CYhcrV4IdKZbEyZjBMuTp12o=", | ||
version = "v0.1.0", | ||
) | ||
|
||
go_repository( | ||
name = "org_golang_x_sys", | ||
importpath = "golang.org/x/sys", | ||
sum = "h1:3jlCCIQZPdOYu1h8BkNvLz8Kgwtae2cagcG/VamtZRU=", | ||
version = "v0.7.0", | ||
) | ||
go_repository( | ||
name = "org_golang_x_term", | ||
importpath = "golang.org/x/term", | ||
sum = "h1:clScbb1cHjoCkyRbWwBEUZ5H/tIFu5TAXIqaZD0Gcjw=", | ||
version = "v0.6.0", | ||
) | ||
|
||
go_repository( | ||
name = "org_golang_x_text", | ||
importpath = "golang.org/x/text", | ||
sum = "h1:57P1ETyNKtuIjB4SRd15iJxuhj8Gc416Y78H3qgMh68=", | ||
version = "v0.8.0", | ||
) | ||
go_repository( | ||
name = "org_golang_x_tools", | ||
importpath = "golang.org/x/tools", | ||
sum = "h1:W4OVu8VVOaIO0yzWMNdepAulS7YfoS3Zabrm8DOXXU4=", | ||
version = "v0.7.0", | ||
) | ||
|
||
go_repository( | ||
name = "org_golang_x_xerrors", | ||
importpath = "golang.org/x/xerrors", | ||
sum = "h1:E7g+9GITq07hpfrRu66IVDexMakfv52eLZ2CXBWiKr4=", | ||
version = "v0.0.0-20191204190536-9bdfabe68543", | ||
) |
Oops, something went wrong.