Skip to content

Commit 9c9b22f

Browse files
committed
bazel-registry: Add sql-parser@0.0.0-200610-3b40ba2.envoy
Signed-off-by: Ryan Northey <ryan@synca.io>
1 parent 8d8e5ca commit 9c9b22f

File tree

5 files changed

+61
-0
lines changed

5 files changed

+61
-0
lines changed
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
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")
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
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+
)
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
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")
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
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+
}
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
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+
}

0 commit comments

Comments
 (0)