File tree Expand file tree Collapse file tree 5 files changed +61
-0
lines changed
bazel-registry/modules/sql-parser
0.0.0-200610-3b40ba2.envoy Expand file tree Collapse file tree 5 files changed +61
-0
lines changed Original file line number Diff line number Diff line change 1+ module (
2+ name = "sql-parser" ,
3+ version = "0.0.0-200610-3b40ba2.envoy" ,
4+ compatibility_level = 1 ,
5+ bazel_compatibility = [">=7.2.1" ],
6+ )
7+
8+ bazel_dep (name = "platforms" , version = "0.0.10" )
9+ bazel_dep (name = "rules_cc" , version = "0.1.1" )
Original file line number Diff line number Diff line change 1+ load ("@rules_cc//cc:defs.bzl" , "cc_library" )
2+
3+ licenses (["notice" ]) # MIT
4+
5+ cc_library (
6+ name = "sqlparser" ,
7+ srcs = glob (["src/**/*.cpp" ]),
8+ hdrs = glob ([
9+ "include/**/*.h" ,
10+ "src/**/*.h" ,
11+ ]),
12+ includes = ["include/sqlparser" ],
13+ defines = select ({
14+ "@platforms//os:windows" : ["YY_NO_UNISTD_H" ],
15+ "//conditions:default" : [],
16+ }),
17+ visibility = ["//visibility:public" ],
18+ )
Original file line number Diff line number Diff line change 1+ module (
2+ name = "sql-parser" ,
3+ version = "0.0.0-200610-3b40ba2.envoy" ,
4+ compatibility_level = 1 ,
5+ bazel_compatibility = [">=7.2.1" ],
6+ )
7+
8+ bazel_dep (name = "platforms" , version = "0.0.10" )
9+ bazel_dep (name = "rules_cc" , version = "0.1.1" )
Original file line number Diff line number Diff line change 1+ {
2+ "url" : " https://github.com/envoyproxy/sql-parser/archive/3b40ba2d106587bdf053a292f7e3bb17e818a57f.tar.gz" ,
3+ "integrity" : " sha256-lsEMjpUKFBoyA08ZsZzesdpI/oWc+Wrl4Z+JTzbGLHE=" ,
4+ "strip_prefix" : " sql-parser-3b40ba2d106587bdf053a292f7e3bb17e818a57f" ,
5+ "overlay" : {
6+ "BUILD.bazel" : " sha256-bmXzpb0f/JDHm3Z50J9WWyGOVYGwEVYRSW9ynmKmGTw=" ,
7+ "MODULE.bazel" : " sha256-Hlp6yHNKj3IIwy8rpZ2lEV8wW18Y84PUcAOecywTuFo="
8+ }
9+ }
Original file line number Diff line number Diff line change 1+ {
2+ "homepage" : " https://github.com/envoyproxy/sql-parser" ,
3+ "maintainers" : [
4+ {
5+ "name" : " Envoy maintainers" ,
6+ "github" : " envoyproxy"
7+ }
8+ ],
9+ "repository" : [
10+ " github:envoyproxy/sql-parser"
11+ ],
12+ "versions" : [
13+ " 0.0.0-200610-3b40ba2.envoy"
14+ ],
15+ "yanked_versions" : {}
16+ }
You can’t perform that action at this time.
0 commit comments