-
Notifications
You must be signed in to change notification settings - Fork 4.8k
/
repository_locations.bzl
1410 lines (1405 loc) · 70.8 KB
/
repository_locations.bzl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# This should match the schema defined in external_deps.bzl.
PROTOBUF_VERSION = "21.7"
# These names of these deps *must* match the names used in `/bazel/protobuf.patch`,
# and both must match the names from the protobuf releases (see
# https://github.com/protocolbuffers/protobuf/releases).
# The names change in upcoming versions.
# The shas are calculated from the downloads on the releases page.
PROTOC_VERSIONS = dict(
linux_aarch_64 = "2696a8f9a61ce67c510d000c88e2d0a8b5adf1f90514e461e8d8943c46d04737",
linux_x86_64 = "0a260c6df439bcf1ecdd5e38e7a7648e4edf99c1a22a4cc66ce8e62c53bdb837",
osx_aarch_64 = "f79a67d708aba6ff2c6208578a6f2bf94f1528795aed646b65e99d4a678c97f8",
osx_x86_64 = "cd3609fa1efc73db9c58fc63e40b240558eb2a8080b4fbfbe1c4b93bbedecc20",
win64 = "954cc5dfdb1d95d4c448c40f274d3720c018f73187b0c19b3c4f9bacc48d1ff0",
)
REPOSITORY_LOCATIONS_SPEC = dict(
bazel_compdb = dict(
project_name = "bazel-compilation-database",
project_desc = "Clang JSON compilation database support for Bazel",
project_url = "https://github.com/grailbio/bazel-compilation-database",
version = "0.5.2",
sha256 = "d32835b26dd35aad8fd0ba0d712265df6565a3ad860d39e4c01ad41059ea7eda",
strip_prefix = "bazel-compilation-database-{version}",
urls = ["https://github.com/grailbio/bazel-compilation-database/archive/{version}.tar.gz"],
release_date = "2021-09-10",
use_category = ["build"],
license = "Apache-2.0",
license_url = "https://github.com/grailbio/bazel-compilation-database/blob/{version}/LICENSE",
),
bazel_gazelle = dict(
project_name = "Gazelle",
project_desc = "Bazel BUILD file generator for Go projects",
project_url = "https://github.com/bazelbuild/bazel-gazelle",
version = "0.26.0",
sha256 = "501deb3d5695ab658e82f6f6f549ba681ea3ca2a5fb7911154b5aa45596183fa",
urls = ["https://github.com/bazelbuild/bazel-gazelle/releases/download/v{version}/bazel-gazelle-v{version}.tar.gz"],
release_date = "2022-06-26",
use_category = ["build"],
license = "Apache-2.0",
license_url = "https://github.com/bazelbuild/bazel-gazelle/blob/v{version}/LICENSE",
),
bazel_toolchains = dict(
project_name = "bazel-toolchains",
project_desc = "Bazel toolchain configs for RBE",
project_url = "https://github.com/bazelbuild/bazel-toolchains",
version = "5.1.1",
sha256 = "e52789d4e89c3e2dc0e3446a9684626a626b6bec3fde787d70bae37c6ebcc47f",
strip_prefix = "bazel-toolchains-{version}",
urls = [
"https://github.com/bazelbuild/bazel-toolchains/archive/v{version}.tar.gz",
],
release_date = "2021-11-30",
use_category = ["build"],
license = "Apache-2.0",
license_url = "https://github.com/bazelbuild/bazel-toolchains/blob/v{version}/LICENSE",
),
build_bazel_rules_apple = dict(
project_name = "Apple Rules for Bazel",
project_desc = "Bazel rules for Apple platforms",
project_url = "https://github.com/bazelbuild/rules_apple",
version = "1.1.2",
sha256 = "90e3b5e8ff942be134e64a83499974203ea64797fd620eddeb71b3a8e1bff681",
urls = ["https://github.com/bazelbuild/rules_apple/releases/download/{version}/rules_apple.{version}.tar.gz"],
release_date = "2022-09-16",
use_category = ["build"],
license = "Apache-2.0",
license_url = "https://github.com/bazelbuild/rules_apple/blob/{version}/LICENSE",
),
rules_fuzzing = dict(
project_name = "Fuzzing Rules for Bazel",
project_desc = "Bazel rules for fuzz tests",
project_url = "https://github.com/bazelbuild/rules_fuzzing",
version = "0.3.1",
sha256 = "4965ff7341f4759f07c83b146f603d6e8cfc35ef99fee3ef39bf61ffa96b1f8b",
strip_prefix = "rules_fuzzing-{version}",
urls = ["https://github.com/bazelbuild/rules_fuzzing/archive/v{version}.tar.gz"],
release_date = "2022-01-24",
use_category = ["test_only"],
implied_untracked_deps = [
# This is a repository rule generated to define an OSS-Fuzz fuzzing
# engine target from the CFLAGS/CXXFLAGS environment.
"rules_fuzzing_oss_fuzz",
],
license = "Apache-2.0",
license_url = "https://github.com/bazelbuild/rules_fuzzing/blob/v{version}/LICENSE",
),
envoy_build_tools = dict(
project_name = "envoy-build-tools",
project_desc = "Common build tools shared by the Envoy/UDPA ecosystem",
project_url = "https://github.com/envoyproxy/envoy-build-tools",
version = "c9eabcc8dde026715b35f262e30ba628bab5976c",
sha256 = "6b1ef916c5318d54a2ab11c31c5a7fb3a1c0e6fd3dc14d3a46b482c0261b9256",
strip_prefix = "envoy-build-tools-{version}",
urls = ["https://github.com/envoyproxy/envoy-build-tools/archive/{version}.tar.gz"],
release_date = "2023-01-21",
use_category = ["build"],
license = "Apache-2.0",
license_url = "https://github.com/envoyproxy/envoy-build-tools/blob/{version}/LICENSE",
),
boringssl = dict(
project_name = "BoringSSL",
project_desc = "Minimal OpenSSL fork",
project_url = "https://github.com/google/boringssl",
# To update BoringSSL, which tracks Chromium releases:
# 1. Open https://omahaproxy.appspot.com/ and note <current_version> of linux/beta release.
# 2. Open https://chromium.googlesource.com/chromium/src/+/refs/tags/<current_version>/DEPS and note <boringssl_revision>.
# 3. Find a commit in BoringSSL's "master-with-bazel" branch that merges <boringssl_revision>.
#
# chromium-105.0.5195.37 (linux/beta)
version = "098695591f3a2665fccef83a3732ecfc99acdcdd",
sha256 = "e141448cf6f686b6e9695f6b6459293fd602c8d51efe118a83106752cf7e1280",
strip_prefix = "boringssl-{version}",
urls = ["https://github.com/google/boringssl/archive/{version}.tar.gz"],
use_category = ["controlplane", "dataplane_core"],
release_date = "2022-07-19",
cpe = "cpe:2.3:a:google:boringssl:*",
license = "Mixed",
license_url = "https://github.com/google/boringssl/blob/{version}/LICENSE",
),
boringssl_fips = dict(
project_name = "BoringSSL (FIPS)",
project_desc = "FIPS compliant BoringSSL",
project_url = "https://boringssl.googlesource.com/boringssl/+/master/crypto/fipsmodule/FIPS.md",
# When this is updated to a revision newer than 2022-08-12,
# CertValidatorUtil::setIgnoreCertificateExpiration can be simplified.
version = "fips-20210429",
sha256 = "a4d069ccef6f3c7bc0c68de82b91414f05cb817494cd1ab483dcf3368883c7c2",
urls = ["https://commondatastorage.googleapis.com/chromium-boringssl-fips/boringssl-853ca1ea1168dff08011e5d42d94609cc0ca2e27.tar.xz"],
use_category = ["controlplane", "dataplane_core"],
release_date = "2021-04-29",
cpe = "cpe:2.3:a:google:boringssl:*",
),
aspect_bazel_lib = dict(
project_name = "Aspect Bazel helpers",
project_desc = "Base Starlark libraries and basic Bazel rules which are useful for constructing rulesets and BUILD files",
project_url = "https://github.com/aspect-build/bazel-lib",
version = "1.12.0",
sha256 = "229a6d65b8b30af0dcaeb77c723b568ef7a2e4ad54dd65168a16992b6b6fe4c7",
strip_prefix = "bazel-lib-{version}",
urls = ["https://github.com/aspect-build/bazel-lib/archive/v{version}.tar.gz"],
use_category = ["build"],
release_date = "2022-09-16",
cpe = "N/A",
license = "Apache-2.0",
license_url = "https://github.com/aspect-build/bazel-lib/blob/v{version}/LICENSE",
),
com_google_absl = dict(
project_name = "Abseil",
project_desc = "Open source collection of C++ libraries drawn from the most fundamental pieces of Google’s internal codebase",
project_url = "https://abseil.io/",
version = "8317b9a01cbc32594ad4bf971709c97cb13ec921",
sha256 = "f772811a2d5dff79da54e24d6d4f5f5bc06d49e4d4ef4107f74a6c361edada99",
strip_prefix = "abseil-cpp-{version}",
urls = ["https://github.com/abseil/abseil-cpp/archive/{version}.tar.gz"],
use_category = ["dataplane_core", "controlplane"],
release_date = "2022-10-06",
cpe = "N/A",
license = "Apache-2.0",
license_url = "https://github.com/abseil/abseil-cpp/blob/{version}/LICENSE",
),
com_github_aignas_rules_shellcheck = dict(
project_name = "Shellcheck rules for bazel",
project_desc = "Now you do not need to depend on the system shellcheck version in your bazel-managed (mono)repos.",
project_url = "https://github.com/aignas/rules_shellcheck",
version = "0.1.1",
sha256 = "4e7cc56d344d0adfd20283f7ad8cb4fba822c0b15ce122665b00dd87a27a74b6",
strip_prefix = "rules_shellcheck-{version}",
urls = ["https://github.com/aignas/rules_shellcheck/archive/v{version}.tar.gz"],
release_date = "2022-05-30",
use_category = ["build"],
cpe = "N/A",
license = "MIT",
license_url = "https://github.com/aignas/rules_shellcheck/blob/v{version}/LICENSE",
),
com_github_axboe_liburing = dict(
project_name = "liburing",
project_desc = "C helpers to set up and tear down io_uring instances",
project_url = "https://github.com/axboe/liburing",
version = "2.1",
sha256 = "f1e0500cb3934b0b61c5020c3999a973c9c93b618faff1eba75aadc95bb03e07",
strip_prefix = "liburing-liburing-{version}",
urls = ["https://github.com/axboe/liburing/archive/liburing-{version}.tar.gz"],
use_category = ["dataplane_core", "controlplane"],
release_date = "2021-09-09",
cpe = "N/A",
),
# This dependency is built only when performance tracing is enabled with the
# option --define=perf_tracing=enabled. It's never built for releases.
com_github_google_perfetto = dict(
project_name = "Perfetto",
project_desc = "Perfetto Tracing SDK",
project_url = "https://perfetto.dev/",
version = "28.0",
sha256 = "06eec38d02f99d225cdad9444102e77d9da717f8cc55f84a3b212abe94a5fc5a",
strip_prefix = "perfetto-{version}/sdk",
urls = ["https://github.com/google/perfetto/archive/v{version}.tar.gz"],
use_category = ["dataplane_core", "controlplane"],
release_date = "2022-08-02",
cpe = "N/A",
license = "Apache-2.0",
license_url = "https://github.com/google/perfetto/blob/v{version}/LICENSE",
),
com_github_c_ares_c_ares = dict(
project_name = "c-ares",
project_desc = "C library for asynchronous DNS requests",
project_url = "https://c-ares.haxx.se/",
version = "1.19.1",
sha256 = "321700399b72ed0e037d0074c629e7741f6b2ec2dda92956abe3e9671d3e268e",
strip_prefix = "c-ares-{version}",
urls = ["https://github.com/c-ares/c-ares/releases/download/cares-{underscore_version}/c-ares-{version}.tar.gz"],
use_category = ["dataplane_core", "controlplane"],
release_date = "2023-05-22",
cpe = "cpe:2.3:a:c-ares_project:c-ares:*",
license = "c-ares",
license_url = "https://github.com/c-ares/c-ares/blob/cares-{underscore_version}/LICENSE.md",
),
com_github_circonus_labs_libcircllhist = dict(
project_name = "libcircllhist",
project_desc = "An implementation of Circonus log-linear histograms",
project_url = "https://github.com/circonus-labs/libcircllhist",
version = "63a16dd6f2fc7bc841bb17ff92be8318df60e2e1",
sha256 = "8165aa25e529d7d4b9ae849d3bf30371255a99d6db0421516abcff23214cdc2c",
strip_prefix = "libcircllhist-{version}",
urls = ["https://github.com/circonus-labs/libcircllhist/archive/{version}.tar.gz"],
use_category = ["controlplane", "observability_core", "dataplane_core"],
release_date = "2019-02-11",
cpe = "N/A",
license = "Apache-2.0",
license_url = "https://github.com/circonus-labs/libcircllhist/blob/{version}/LICENSE",
),
com_github_cyan4973_xxhash = dict(
project_name = "xxHash",
project_desc = "Extremely fast hash algorithm",
project_url = "https://github.com/Cyan4973/xxHash",
version = "0.8.1",
sha256 = "3bb6b7d6f30c591dd65aaaff1c8b7a5b94d81687998ca9400082c739a690436c",
strip_prefix = "xxHash-{version}",
urls = ["https://github.com/Cyan4973/xxHash/archive/v{version}.tar.gz"],
use_category = ["dataplane_core", "controlplane"],
release_date = "2021-11-29",
cpe = "N/A",
license = "BSD-2-Clause",
license_url = "https://github.com/Cyan4973/xxHash/blob/v{version}/LICENSE",
),
com_github_envoyproxy_sqlparser = dict(
project_name = "C++ SQL Parser Library",
project_desc = "Forked from Hyrise SQL Parser",
project_url = "https://github.com/envoyproxy/sql-parser",
version = "3b40ba2d106587bdf053a292f7e3bb17e818a57f",
sha256 = "96c10c8e950a141a32034f19b19cdeb1da48fe859cf96ae5e19f894f36c62c71",
strip_prefix = "sql-parser-{version}",
urls = ["https://github.com/envoyproxy/sql-parser/archive/{version}.tar.gz"],
use_category = ["dataplane_ext"],
extensions = [
"envoy.filters.network.mysql_proxy",
"envoy.filters.network.postgres_proxy",
],
release_date = "2020-06-10",
cpe = "N/A",
license = "MIT",
license_url = "https://github.com/envoyproxy/sql-parser/blob/{version}/LICENSE",
),
com_github_mirror_tclap = dict(
project_name = "tclap",
project_desc = "Small, flexible library that provides a simple interface for defining and accessing command line arguments",
project_url = "http://tclap.sourceforge.net",
version = "1.2.5",
sha256 = "7e87d13734076fa4f626f6144ce9a02717198b3f054341a6886e2107b048b235",
strip_prefix = "tclap-{version}",
urls = ["https://github.com/mirror/tclap/archive/v{version}.tar.gz"],
release_date = "2021-11-01",
use_category = ["other"],
cpe = "cpe:2.3:a:tclap_project:tclap:*",
license = "MIT",
license_url = "https://github.com/mirror/tclap/blob/v{version}/COPYING",
),
com_github_fmtlib_fmt = dict(
project_name = "fmt",
project_desc = "{fmt} is an open-source formatting library providing a fast and safe alternative to C stdio and C++ iostreams",
project_url = "https://fmt.dev",
version = "9.1.0",
sha256 = "cceb4cb9366e18a5742128cb3524ce5f50e88b476f1e54737a47ffdf4df4c996",
strip_prefix = "fmt-{version}",
urls = ["https://github.com/fmtlib/fmt/releases/download/{version}/fmt-{version}.zip"],
use_category = ["dataplane_core", "controlplane"],
release_date = "2022-08-27",
cpe = "cpe:2.3:a:fmt:fmt:*",
license = "fmt",
license_url = "https://github.com/fmtlib/fmt/blob/{version}/LICENSE.rst",
),
com_github_gabime_spdlog = dict(
project_name = "spdlog",
project_desc = "Very fast, header-only/compiled, C++ logging library",
project_url = "https://github.com/gabime/spdlog",
version = "1.9.2",
sha256 = "6fff9215f5cb81760be4cc16d033526d1080427d236e86d70bb02994f85e3d38",
strip_prefix = "spdlog-{version}",
urls = ["https://github.com/gabime/spdlog/archive/v{version}.tar.gz"],
use_category = ["dataplane_core", "controlplane"],
release_date = "2021-08-12",
cpe = "N/A",
license = "MIT",
license_url = "https://github.com/gabime/spdlog/blob/v{version}/LICENSE",
),
com_github_google_libprotobuf_mutator = dict(
project_name = "libprotobuf-mutator",
project_desc = "Library to randomly mutate protobuffers",
project_url = "https://github.com/google/libprotobuf-mutator",
version = "1.0",
sha256 = "792f250fb546bde8590e72d64311ea00a70c175fd77df6bb5e02328fa15fe28e",
strip_prefix = "libprotobuf-mutator-{version}",
urls = ["https://github.com/google/libprotobuf-mutator/archive/v{version}.tar.gz"],
release_date = "2020-11-13",
use_category = ["test_only"],
license = "Apache-2.0",
license_url = "https://github.com/google/libprotobuf-mutator/blob/v{version}/LICENSE",
),
com_github_google_libsxg = dict(
project_name = "libsxg",
project_desc = "Signed HTTP Exchange library",
project_url = "https://github.com/google/libsxg",
version = "beaa3939b76f8644f6833267e9f2462760838f18",
sha256 = "082bf844047a9aeec0d388283d5edc68bd22bcf4d32eb5a566654ae89956ad1f",
strip_prefix = "libsxg-{version}",
urls = ["https://github.com/google/libsxg/archive/{version}.tar.gz"],
use_category = ["other"],
extensions = ["envoy.filters.http.sxg"],
release_date = "2021-07-08",
cpe = "N/A",
license = "Apache-2.0",
license_url = "https://github.com/google/libsxg/blob/{version}/LICENSE",
),
com_github_google_tcmalloc = dict(
project_name = "tcmalloc",
project_desc = "Fast, multi-threaded malloc implementation",
project_url = "https://github.com/google/tcmalloc",
version = "59400332b9cff9920b6a1da203ac1575272a9f44",
sha256 = "3e0a0c135318fa69e748b140d32cb24a64d885bedfeb5f23fa01cc0d7859bbf0",
strip_prefix = "tcmalloc-{version}",
urls = ["https://github.com/google/tcmalloc/archive/{version}.tar.gz"],
use_category = ["dataplane_core", "controlplane"],
release_date = "2022-08-06",
cpe = "N/A",
license = "Apache-2.0",
license_url = "https://github.com/google/tcmalloc/blob/{version}/LICENSE",
),
com_github_gperftools_gperftools = dict(
project_name = "gperftools",
project_desc = "tcmalloc and profiling libraries",
project_url = "https://github.com/gperftools/gperftools",
version = "2.10",
sha256 = "83e3bfdd28b8bcf53222c3798d4d395d52dadbbae59e8730c4a6d31a9c3732d8",
strip_prefix = "gperftools-{version}",
urls = ["https://github.com/gperftools/gperftools/releases/download/gperftools-{version}/gperftools-{version}.tar.gz"],
release_date = "2022-05-31",
use_category = ["dataplane_core", "controlplane"],
cpe = "cpe:2.3:a:gperftools_project:gperftools:*",
license = "BSD-3-Clause",
license_url = "https://github.com/gperftools/gperftools/blob/gperftools-{version}/COPYING",
),
com_github_grpc_grpc = dict(
project_name = "gRPC",
project_desc = "gRPC C core library",
project_url = "https://grpc.io",
version = "1.49.0",
sha256 = "15715e1847cc9e42014f02c727dbcb48e39dbdb90f79ad3d66fe4361709ff935",
strip_prefix = "grpc-{version}",
urls = ["https://github.com/grpc/grpc/archive/v{version}.tar.gz"],
use_category = ["dataplane_core", "controlplane"],
release_date = "2022-09-14",
cpe = "cpe:2.3:a:grpc:grpc:*",
license = "Apache-2.0",
license_url = "https://github.com/grpc/grpc/blob/v{version}/LICENSE",
),
com_github_unicode_org_icu = dict(
project_name = "ICU Library",
project_desc = "Development files for International Components for Unicode",
project_url = "https://github.com/unicode-org/icu",
version = "71-1",
sha256 = "d88a4ea7a4a28b445bb073a6cfeb2a296bf49a4a2fe5f1b49f87ecb4fc55c51d",
strip_prefix = "icu-release-{version}",
urls = ["https://github.com/unicode-org/icu/archive/release-{version}.tar.gz"],
use_category = ["dataplane_ext"],
extensions = ["envoy.filters.http.language"],
release_date = "2022-04-06",
cpe = "N/A",
license = "ICU",
license_url = "https://github.com/unicode-org/icu/blob/release-{version}/icu4c/LICENSE",
),
com_github_intel_ipp_crypto_crypto_mb = dict(
project_name = "libipp-crypto",
project_desc = "Intel® Integrated Performance Primitives Cryptography",
project_url = "https://github.com/intel/ipp-crypto",
version = "2021.5",
sha256 = "0b277548c59e6bfe489e634d622b54be3708086fc006a441d39922c2d6d43f0d",
strip_prefix = "ipp-crypto-ippcp_{version}",
urls = ["https://github.com/intel/ipp-crypto/archive/ippcp_{version}.tar.gz"],
release_date = "2021-12-21",
use_category = ["dataplane_ext"],
extensions = ["envoy.tls.key_providers.cryptomb"],
cpe = "cpe:2.3:a:intel:cryptography_for_intel_integrated_performance_primitives:*",
license = "Apache-2.0",
license_url = "https://github.com/intel/ipp-crypto/blob/ippcp_{version}/LICENSE",
),
com_github_intel_qatlib = dict(
project_name = "qatlib",
project_desc = "Intel QuickAssist Technology Library",
project_url = "https://github.com/intel/qatlib",
version = "21.11.0",
sha256 = "0fd827cca1ea5ffa7302d560759329141843aee09251f1226c7f3e5e8e2b3ecd",
strip_prefix = "qatlib-{version}",
urls = ["https://github.com/intel/qatlib/archive/refs/tags/{version}.tar.gz"],
use_category = ["dataplane_ext"],
release_date = "2021-11-10",
extensions = ["envoy.tls.key_providers.qat"],
cpe = "N/A",
license = "BSD-3-Clause",
license_url = "https://github.com/intel/qatlib/blob/{version}/LICENSE",
),
com_github_luajit_luajit = dict(
project_name = "LuaJIT",
project_desc = "Just-In-Time compiler for Lua",
project_url = "https://luajit.org",
# The last release version, 2.1.0-beta3 has a number of CVEs filed
# against it. These may not impact correct non-malicious Lua code, but for prudence we bump.
version = "1d8b747c161db457e032a023ebbff511f5de5ec2",
sha256 = "20a159c38a98ecdb6368e8d655343b6036622a29a1621da9dc303f7ed9bf37f3",
strip_prefix = "LuaJIT-{version}",
urls = ["https://github.com/LuaJIT/LuaJIT/archive/{version}.tar.gz"],
release_date = "2020-10-12",
use_category = ["dataplane_ext"],
extensions = ["envoy.filters.http.lua"],
cpe = "cpe:2.3:a:luajit:luajit:*",
license = "MIT",
license_url = "https://github.com/LuaJIT/LuaJIT/blob/{version}/COPYRIGHT",
),
com_github_moonjit_moonjit = dict(
project_name = "Moonjit",
project_desc = "LuaJIT fork with wider platform support",
project_url = "https://github.com/moonjit/moonjit",
version = "2.2.0",
sha256 = "83deb2c880488dfe7dd8ebf09e3b1e7613ef4b8420de53de6f712f01aabca2b6",
strip_prefix = "moonjit-{version}",
urls = ["https://github.com/moonjit/moonjit/archive/{version}.tar.gz"],
use_category = ["dataplane_ext"],
extensions = ["envoy.filters.http.lua"],
release_date = "2020-01-14",
cpe = "cpe:2.3:a:moonjit_project:moonjit:*",
license = "moonjit",
license_url = "https://github.com/moonjit/moonjit/blob/{version}/COPYRIGHT",
),
com_github_nghttp2_nghttp2 = dict(
project_name = "Nghttp2",
project_desc = "Implementation of HTTP/2 and its header compression algorithm HPACK in C",
project_url = "https://nghttp2.org",
version = "1.50.0",
sha256 = "d162468980dba58e54e31aa2cbaf96fd2f0890e6dd141af100f6bd1b30aa73c6",
strip_prefix = "nghttp2-{version}",
urls = ["https://github.com/nghttp2/nghttp2/releases/download/v{version}/nghttp2-{version}.tar.gz"],
use_category = ["controlplane", "dataplane_core"],
release_date = "2022-09-21",
cpe = "cpe:2.3:a:nghttp2:nghttp2:*",
license = "MIT",
license_url = "https://github.com/nghttp2/nghttp2/blob/v{version}/LICENSE",
),
io_hyperscan = dict(
project_name = "Hyperscan",
project_desc = "High-performance regular expression matching library",
project_url = "https://hyperscan.io",
version = "5.4.0",
sha256 = "e51aba39af47e3901062852e5004d127fa7763b5dbbc16bcca4265243ffa106f",
strip_prefix = "hyperscan-{version}",
urls = ["https://github.com/intel/hyperscan/archive/v{version}.tar.gz"],
use_category = ["dataplane_ext"],
extensions = [
"envoy.matching.input_matchers.hyperscan",
"envoy.regex_engines.hyperscan",
],
release_date = "2021-01-13",
cpe = "N/A",
license = "BSD-3-Clause",
license_url = "https://github.com/intel/hyperscan/blob/v{version}/LICENSE",
),
io_opentracing_cpp = dict(
project_name = "OpenTracing",
project_desc = "Vendor-neutral APIs and instrumentation for distributed tracing",
project_url = "https://opentracing.io",
version = "1.5.1",
sha256 = "015c4187f7a6426a2b5196f0ccd982aa87f010cf61f507ae3ce5c90523f92301",
strip_prefix = "opentracing-cpp-{version}",
urls = ["https://github.com/opentracing/opentracing-cpp/archive/v{version}.tar.gz"],
use_category = ["observability_ext"],
extensions = [
"envoy.tracers.datadog",
"envoy.tracers.dynamic_ot",
],
release_date = "2019-01-16",
cpe = "N/A",
license = "Apache-2.0",
license_url = "https://github.com/opentracing/opentracing-cpp/blob/v{version}/LICENSE",
),
skywalking_data_collect_protocol = dict(
project_name = "skywalking-data-collect-protocol",
project_desc = "Data Collect Protocols of Apache SkyWalking",
project_url = "https://github.com/apache/skywalking-data-collect-protocol",
name = "skywalking_data_collect_protocol",
sha256 = "49bd689b9c1c0ea12064bd35581689cef7835e5ac15d335dc425fbfc2029aa90",
urls = ["https://github.com/apache/skywalking-data-collect-protocol/archive/v{version}.tar.gz"],
strip_prefix = "skywalking-data-collect-protocol-{version}",
version = "8.9.1",
use_category = ["observability_ext"],
extensions = ["envoy.tracers.skywalking"],
release_date = "2021-12-11",
cpe = "cpe:2.3:a:apache:skywalking:*",
license = "Apache-2.0",
),
com_github_skyapm_cpp2sky = dict(
project_name = "cpp2sky",
project_desc = "C++ SDK for Apache SkyWalking",
project_url = "https://github.com/SkyAPM/cpp2sky",
sha256 = "eda4c32296aefde09cb7d059fc3d06698bf96d7827db51c582e1cd40e266c260",
version = "0.4.0",
strip_prefix = "cpp2sky-{version}",
urls = ["https://github.com/SkyAPM/cpp2sky/archive/v{version}.tar.gz"],
use_category = ["observability_ext"],
extensions = ["envoy.tracers.skywalking"],
release_date = "2022-03-28",
cpe = "N/A",
license = "Apache-2.0",
license_url = "https://github.com/SkyAPM/cpp2sky/blob/v{version}/LICENSE",
),
com_github_datadog_dd_opentracing_cpp = dict(
project_name = "Datadog OpenTracing C++ Client",
project_desc = "Datadog OpenTracing C++ Client",
project_url = "https://github.com/DataDog/dd-opentracing-cpp",
version = "1.2.1",
sha256 = "ae44699e4aa2d21b70ed897a6c0cf3ed7dfb411e1aae4e686e39af75cec7c9bf",
strip_prefix = "dd-opentracing-cpp-{version}",
urls = ["https://github.com/DataDog/dd-opentracing-cpp/archive/v{version}.tar.gz"],
use_category = ["observability_ext"],
extensions = ["envoy.tracers.datadog"],
release_date = "2021-01-27",
cpe = "N/A",
license = "Apache-2.0",
license_url = "https://github.com/DataDog/dd-opentracing-cpp/blob/v{version}/LICENSE",
),
com_github_google_benchmark = dict(
project_name = "Benchmark",
project_desc = "Library to benchmark code snippets",
project_url = "https://github.com/google/benchmark",
version = "1.7.0",
sha256 = "3aff99169fa8bdee356eaa1f691e835a6e57b1efeadb8a0f9f228531158246ac",
strip_prefix = "benchmark-{version}",
urls = ["https://github.com/google/benchmark/archive/v{version}.tar.gz"],
use_category = ["test_only"],
release_date = "2022-07-25",
license = "Apache-2.0",
license_url = "https://github.com/google/benchmark/blob/v{version}/LICENSE",
),
com_github_libevent_libevent = dict(
project_name = "libevent",
project_desc = "Event notification library",
project_url = "https://libevent.org",
# This SHA includes the new "prepare" and "check" watchers, used for event loop performance
# stats (see https://github.com/libevent/libevent/pull/793) and the fix for a race condition
# in the watchers (see https://github.com/libevent/libevent/pull/802).
# This also includes the fixes for https://github.com/libevent/libevent/issues/806
# and https://github.com/envoyproxy/envoy-mobile/issues/215.
# This also includes the fixes for Phantom events with EV_ET (see
# https://github.com/libevent/libevent/issues/984).
# This also includes the wepoll backend for Windows (see
# https://github.com/libevent/libevent/pull/1006)
# TODO(adip): Update to v2.2 when it is released.
version = "62c152d9a7cd264b993dad730c4163c6ede2e0a3",
sha256 = "4c80e5fe044ce5f8055b20a2f141ee32ec2614000f3e95d2aa81611a4c8f5213",
strip_prefix = "libevent-{version}",
urls = ["https://github.com/libevent/libevent/archive/{version}.tar.gz"],
use_category = ["dataplane_core", "controlplane"],
release_date = "2020-07-28",
cpe = "cpe:2.3:a:libevent_project:libevent:*",
license = "BSD-3-Clause",
license_url = "https://github.com/libevent/libevent/blob/{version}/LICENSE",
),
net_colm_open_source_colm = dict(
project_name = "Colm",
project_desc = "The Colm Programming Language",
project_url = "https://www.colm.net/open-source/colm/",
# The latest release version v0.14.7 prevents building statically (see
# https://github.com/adrian-thurston/colm/issues/146). The latest SHA includes the fix (see
# https://github.com/adrian-thurston/colm/commit/fc61ecb3a22b89864916ec538eaf04840e7dd6b5).
# TODO(zhxie): Update to the next release version when it is released.
version = "2d8ba76ddaf6634f285d0a81ee42d5ee77d084cf",
sha256 = "0399e9bef7603a8f3d94acd0b0af6b5944cc3103e586734719379d3ec09620c0",
strip_prefix = "colm-{version}",
urls = ["https://github.com/adrian-thurston/colm/archive/{version}.tar.gz"],
use_category = ["dataplane_ext"],
extensions = [
"envoy.matching.input_matchers.hyperscan",
"envoy.regex_engines.hyperscan",
],
release_date = "2021-12-28",
cpe = "N/A",
license = "MIT",
license_url = "https://github.com/adrian-thurston/colm/blob/{version}/COPYING",
),
net_colm_open_source_ragel = dict(
project_name = "Ragel",
project_desc = "Ragel State Machine Compiler",
project_url = "https://www.colm.net/open-source/ragel/",
# We used the stable release Ragel 6.10 previously and it is under GPLv2 license (see
# http://www.colm.net/open-source/ragel). Envoy uses its binary only as a tool for
# compiling contrib extension Hyperscan. For copyright consideration, we update Ragel to
# its development release which is under MIT license.
# The latest release version v7.0.4 is not compatible with its dependency Colm we use. The
# latest SHA includes fix for compatibility.
# TODO(zhxie): Update to the next release version when it is released.
version = "d4577c924451b331c73c8ed0af04f6efd35ac0b4",
sha256 = "fa3474d50da9c870b79b51ad43f8d11cdf05268f5ec05a602ecd5b1b5f5febb0",
strip_prefix = "ragel-{version}",
urls = ["https://github.com/adrian-thurston/ragel/archive/{version}.tar.gz"],
use_category = ["dataplane_ext"],
extensions = [
"envoy.matching.input_matchers.hyperscan",
"envoy.regex_engines.hyperscan",
],
release_date = "2021-12-28",
cpe = "N/A",
license = "MIT",
license_url = "https://github.com/adrian-thurston/ragel/blob/{version}/COPYING",
),
# This should be removed, see https://github.com/envoyproxy/envoy/issues/13261.
net_zlib = dict(
project_name = "zlib",
project_desc = "zlib compression library",
project_url = "https://zlib.net",
version = "1.2.12",
sha256 = "d8688496ea40fb61787500e863cc63c9afcbc524468cedeb478068924eb54932",
strip_prefix = "zlib-{version}",
urls = ["https://github.com/madler/zlib/archive/v{version}.tar.gz"],
use_category = ["controlplane", "dataplane_core"],
release_date = "2022-03-27",
cpe = "cpe:2.3:a:gnu:zlib:*",
license = "zlib",
license_url = "https://github.com/madler/zlib/blob/v{version}/zlib.h",
),
org_boost = dict(
project_name = "Boost",
project_desc = "Boost C++ source libraries",
project_url = "https://www.boost.org/",
version = "1.78.0",
sha256 = "94ced8b72956591c4775ae2207a9763d3600b30d9d7446562c552f0a14a63be7",
strip_prefix = "boost_{underscore_version}",
urls = ["https://boostorg.jfrog.io/artifactory/main/release/{version}/source/boost_{underscore_version}.tar.gz"],
use_category = ["dataplane_ext"],
extensions = [
"envoy.matching.input_matchers.hyperscan",
"envoy.regex_engines.hyperscan",
],
release_date = "2021-12-08",
cpe = "cpe:2.3:a:boost:boost:*",
license = "Boost",
license_url = "https://github.com/boostorg/boost/blob/boost-{version}/LICENSE_1_0.txt",
),
org_brotli = dict(
project_name = "brotli",
project_desc = "brotli compression library",
project_url = "https://brotli.org",
# Use the dev branch of brotli to resolve compilation issues.
# TODO(rojkov): Remove when brotli > 1.0.9 is released.
version = "0cd2e3926e95e7e2930f57ae3f4885508d462a25",
sha256 = "93810780e60304b51f2c9645fe313a6e4640711063ed0b860cfa60999dd256c5",
strip_prefix = "brotli-{version}",
urls = ["https://github.com/google/brotli/archive/{version}.tar.gz"],
use_category = ["dataplane_ext"],
extensions = [
"envoy.compression.brotli.compressor",
"envoy.compression.brotli.decompressor",
],
release_date = "2020-09-08",
cpe = "cpe:2.3:a:google:brotli:*",
license = "MIT",
license_url = "https://github.com/google/brotli/blob/{version}/LICENSE",
),
com_github_facebook_zstd = dict(
project_name = "zstd",
project_desc = "zstd compression library",
project_url = "https://facebook.github.io/zstd",
version = "1.5.2",
sha256 = "f7de13462f7a82c29ab865820149e778cbfe01087b3a55b5332707abf9db4a6e",
strip_prefix = "zstd-{version}",
urls = ["https://github.com/facebook/zstd/archive/v{version}.tar.gz"],
use_category = ["dataplane_ext"],
extensions = [
"envoy.compression.zstd.compressor",
"envoy.compression.zstd.decompressor",
],
release_date = "2022-01-20",
cpe = "cpe:2.3:a:facebook:zstandard:*",
),
com_github_zlib_ng_zlib_ng = dict(
project_name = "zlib-ng",
project_desc = "zlib fork (higher performance)",
project_url = "https://github.com/zlib-ng/zlib-ng",
version = "2.0.6",
sha256 = "8258b75a72303b661a238047cb348203d88d9dddf85d480ed885f375916fcab6",
strip_prefix = "zlib-ng-{version}",
urls = ["https://github.com/zlib-ng/zlib-ng/archive/{version}.tar.gz"],
use_category = ["controlplane", "dataplane_core"],
release_date = "2021-12-24",
cpe = "N/A",
license = "zlib",
license_url = "https://github.com/zlib-ng/zlib-ng/blob/{version}/LICENSE.md",
),
com_github_jbeder_yaml_cpp = dict(
project_name = "yaml-cpp",
project_desc = "YAML parser and emitter in C++ matching the YAML 1.2 spec",
project_url = "https://github.com/jbeder/yaml-cpp",
version = "420c98231094b1cd2e5de3a714c4e3ee9b4f1118",
sha256 = "92160e266dcc4a276b0de037ad211c84133b2dc4cf1e76eaef57441cf28d698c",
strip_prefix = "yaml-cpp-{version}",
urls = ["https://github.com/jbeder/yaml-cpp/archive/{version}.tar.gz"],
# YAML is also used for runtime as well as controlplane. It shouldn't appear on the
# dataplane but we can't verify this automatically due to code structure today.
use_category = ["controlplane", "dataplane_core"],
release_date = "2022-04-27",
cpe = "cpe:2.3:a:yaml-cpp_project:yaml-cpp:*",
license = "MIT",
license_url = "https://github.com/jbeder/yaml-cpp/blob/{version}/LICENSE",
),
com_github_msgpack_msgpack_c = dict(
project_name = "msgpack for C/C++",
project_desc = "MessagePack is an efficient binary serialization format",
project_url = "https://github.com/msgpack/msgpack-c",
version = "3.3.0",
sha256 = "6e114d12a5ddb8cb11f669f83f32246e484a8addd0ce93f274996f1941c1f07b",
strip_prefix = "msgpack-{version}",
urls = ["https://github.com/msgpack/msgpack-c/releases/download/cpp-{version}/msgpack-{version}.tar.gz"],
use_category = ["observability_ext"],
extensions = ["envoy.tracers.datadog"],
release_date = "2020-06-05",
cpe = "N/A",
license = "Boost",
license_url = "https://github.com/msgpack/msgpack-c/blob/cpp-{version}/LICENSE_1_0.txt",
),
com_github_google_jwt_verify = dict(
project_name = "jwt_verify_lib",
project_desc = "JWT verification library for C++",
project_url = "https://github.com/google/jwt_verify_lib",
version = "26c22c0ce1bc607eec8fa5dd26b707378adc7a88",
sha256 = "8964c2b3a833dc5fc2600b2768ea1e73a0fcf8a1ed9d2cbc5fa3387c4cdd5caa",
strip_prefix = "jwt_verify_lib-{version}",
urls = ["https://github.com/google/jwt_verify_lib/archive/{version}.tar.gz"],
use_category = ["dataplane_ext"],
extensions = ["envoy.filters.http.jwt_authn", "envoy.filters.http.gcp_authn"],
release_date = "2022-09-22",
cpe = "N/A",
license = "Apache-2.0",
license_url = "https://github.com/google/jwt_verify_lib/blob/{version}/LICENSE",
),
com_github_alibaba_hessian2_codec = dict(
project_name = "hessian2-codec",
project_desc = "hessian2-codec is a C++ library for hessian2 codec",
project_url = "https://github.com/alibaba/hessian2-codec.git",
version = "e9bb36e206f2c5054b50d11f88bb1b95c77766f8",
sha256 = "82743dcbf2bd624a68eb2c0d54963ea87446eba4eb08c117744f0669ddc70786",
strip_prefix = "hessian2-codec-{version}",
urls = ["https://github.com/alibaba/hessian2-codec/archive/{version}.tar.gz"],
use_category = ["dataplane_ext"],
extensions = ["envoy.filters.network.dubbo_proxy"],
release_date = "2022-10-10",
cpe = "N/A",
license = "Apache-2.0",
license_url = "https://github.com/alibaba/hessian2-codec/blob/{version}/LICENSE",
),
com_github_tencent_rapidjson = dict(
project_name = "RapidJSON",
project_desc = "Fast JSON parser/generator for C++",
project_url = "https://rapidjson.org",
version = "dfbe1db9da455552f7a9ad5d2aea17dd9d832ac1",
sha256 = "a2faafbc402394df0fa94602df4b5e4befd734aad6bb55dfef46f62fcaf1090b",
strip_prefix = "rapidjson-{version}",
urls = ["https://github.com/Tencent/rapidjson/archive/{version}.tar.gz"],
use_category = ["observability_ext"],
# Rapidjson is used in the external dependency of zipkin tracer.
extensions = ["envoy.tracers.zipkin", "envoy.tracers.opencensus"],
release_date = "2019-12-03",
cpe = "cpe:2.3:a:tencent:rapidjson:*",
license = "RapidJSON",
license_url = "https://github.com/Tencent/rapidjson/blob/{version}/license.txt",
),
com_github_nlohmann_json = dict(
project_name = "nlohmann JSON",
project_desc = "Fast JSON parser/generator for C++",
project_url = "https://nlohmann.github.io/json",
version = "3.11.2",
sha256 = "d69f9deb6a75e2580465c6c4c5111b89c4dc2fa94e3a85fcd2ffcd9a143d9273",
strip_prefix = "json-{version}",
urls = ["https://github.com/nlohmann/json/archive/v{version}.tar.gz"],
# This will be a replacement for rapidJSON used in extensions and may also be a fast
# replacement for protobuf JSON.
use_category = ["controlplane", "dataplane_core"],
release_date = "2022-08-12",
cpe = "cpe:2.3:a:json-for-modern-cpp_project:json-for-modern-cpp:*",
license = "MIT",
license_url = "https://github.com/nlohmann/json/blob/v{version}/LICENSE.MIT",
),
# This is an external dependency needed while running the
# envoy docker image. A bazel target has been created since
# there is no binary package available for the utility on Ubuntu
# which is the base image used to build an envoy container.
# This is not needed to build an envoy binary or run tests.
com_github_ncopa_suexec = dict(
project_name = "su-exec",
project_desc = "Utility to switch user and group id, setgroups and exec",
project_url = "https://github.com/ncopa/su-exec",
version = "212b75144bbc06722fbd7661f651390dc47a43d1",
sha256 = "939782774079ec156788ea3e04dd5e340e993544f4296be76a9c595334ca1779",
strip_prefix = "su-exec-{version}",
urls = ["https://github.com/ncopa/su-exec/archive/{version}.tar.gz"],
use_category = ["other"],
release_date = "2019-09-18",
cpe = "N/A",
license = "MIT",
license_url = "https://github.com/ncopa/su-exec/blob/{version}/LICENSE",
),
com_google_googletest = dict(
project_name = "Google Test",
project_desc = "Google's C++ test framework",
project_url = "https://github.com/google/googletest",
# Pick up fix for MOCK_METHOD compilation with clang-cl for Windows (resolved after 1.10.0)
# see https://github.com/google/googletest/issues/2490
version = "a4ab0abb93620ce26efad9de9296b73b16e88588",
sha256 = "7897bfaa5ad39a479177cfb5c3ce010184dbaee22a7c3727b212282871918751",
strip_prefix = "googletest-{version}",
urls = ["https://github.com/google/googletest/archive/{version}.tar.gz"],
release_date = "2020-09-10",
use_category = ["test_only"],
cpe = "cpe:2.3:a:google:google_test:*",
license = "BSD-3-Clause",
license_url = "https://github.com/google/googletest/blob/{version}/LICENSE",
),
com_google_protobuf = dict(
project_name = "Protocol Buffers",
project_desc = "Language-neutral, platform-neutral extensible mechanism for serializing structured data",
project_url = "https://developers.google.com/protocol-buffers",
version = PROTOBUF_VERSION,
# When upgrading the protobuf library, please re-run
# test/common/json:gen_excluded_unicodes to recompute the ranges
# excluded from differential fuzzing that are populated in
# test/common/json/json_sanitizer_test_util.cc.
sha256 = "e07046fbac432b05adc1fd1318c6f19ab1b0ec0655f7f4e74627d9713959a135",
strip_prefix = "protobuf-{version}",
urls = ["https://github.com/protocolbuffers/protobuf/releases/download/v{version}/protobuf-all-{version}.tar.gz"],
use_category = ["dataplane_core", "controlplane"],
release_date = "2022-09-29",
cpe = "cpe:2.3:a:google:protobuf:*",
license = "Protocol Buffers",
license_url = "https://github.com/protocolbuffers/protobuf/blob/v{version}/LICENSE",
),
grpc_httpjson_transcoding = dict(
project_name = "grpc-httpjson-transcoding",
project_desc = "Library that supports transcoding so that HTTP/JSON can be converted to gRPC",
project_url = "https://github.com/grpc-ecosystem/grpc-httpjson-transcoding",
version = "387cce028806226ef0976ad276a3842a9219df99",
sha256 = "4a456dc58a9ae287e5afebc9e7033ff7c04d55e8c5f230d0dc0cf79672e33ae7",
strip_prefix = "grpc-httpjson-transcoding-{version}",
urls = ["https://github.com/grpc-ecosystem/grpc-httpjson-transcoding/archive/{version}.tar.gz"],
use_category = ["dataplane_ext"],
extensions = ["envoy.filters.http.grpc_json_transcoder"],
release_date = "2022-10-07",
cpe = "N/A",
license = "Apache-2.0",
license_url = "https://github.com/grpc-ecosystem/grpc-httpjson-transcoding/blob/{version}/LICENSE",
),
io_bazel_rules_go = dict(
project_name = "Go rules for Bazel",
project_desc = "Bazel rules for the Go language",
project_url = "https://github.com/bazelbuild/rules_go",
version = "0.35.0",
sha256 = "099a9fb96a376ccbbb7d291ed4ecbdfd42f6bc822ab77ae6f1b5cb9e914e94fa",
urls = ["https://github.com/bazelbuild/rules_go/releases/download/v{version}/rules_go-v{version}.zip"],
use_category = ["build", "api"],
release_date = "2022-09-11",
implied_untracked_deps = [
"com_github_golang_protobuf",
"io_bazel_rules_nogo",
"org_golang_google_protobuf",
"org_golang_x_tools",
],
license = "Apache-2.0",
license_url = "https://github.com/bazelbuild/rules_go/blob/v{version}/LICENSE.txt",
),
rules_foreign_cc = dict(
project_name = "Rules for using foreign build systems in Bazel",
project_desc = "Rules for using foreign build systems in Bazel",
project_url = "https://github.com/bazelbuild/rules_foreign_cc",
version = "0.8.0",
sha256 = "6041f1374ff32ba711564374ad8e007aef77f71561a7ce784123b9b4b88614fc",
strip_prefix = "rules_foreign_cc-{version}",
urls = ["https://github.com/bazelbuild/rules_foreign_cc/archive/{version}.tar.gz"],
release_date = "2022-04-18",
use_category = ["build", "dataplane_core", "controlplane"],
license = "Apache-2.0",
license_url = "https://github.com/bazelbuild/rules_foreign_cc/blob/{version}/LICENSE",
),
rules_python = dict(
project_name = "Python rules for Bazel",
project_desc = "Bazel rules for the Python language",
project_url = "https://github.com/bazelbuild/rules_python",
version = "0.12.0",
sha256 = "b593d13bb43c94ce94b483c2858e53a9b811f6f10e1e0eedc61073bd90e58d9c",
release_date = "2022-08-29",
strip_prefix = "rules_python-{version}",
urls = ["https://github.com/bazelbuild/rules_python/archive/{version}.tar.gz"],
use_category = ["build"],
license = "Apache-2.0",
license_url = "https://github.com/bazelbuild/rules_python/blob/{version}/LICENSE",
),
rules_pkg = dict(
project_name = "Packaging rules for Bazel",
project_desc = "Bazel rules for the packaging distributions",
project_url = "https://github.com/bazelbuild/rules_pkg",
version = "0.7.0",
sha256 = "e110311d898c1ff35f39829ae3ec56e39c0ef92eb44de74418982a114f51e132",
strip_prefix = "rules_pkg-{version}",
urls = ["https://github.com/bazelbuild/rules_pkg/archive/{version}.tar.gz"],
use_category = ["build"],
release_date = "2022-04-07",
license = "Apache-2.0",
license_url = "https://github.com/bazelbuild/rules_pkg/blob/{version}/LICENSE",
),
org_llvm_llvm = dict(
# When changing this, you must re-generate the list of llvm libs
# see `bazel/foreign_cc/BUILD` for further information.
project_name = "LLVM",
project_desc = "LLVM Compiler Infrastructure",
project_url = "https://llvm.org",
version = "12.0.1",
sha256 = "7d9a8405f557cefc5a21bf5672af73903b64749d9bc3a50322239f56f34ffddf",
strip_prefix = "llvm-{version}.src",
urls = ["https://github.com/llvm/llvm-project/releases/download/llvmorg-{version}/llvm-{version}.src.tar.xz"],
release_date = "2021-07-09",
use_category = ["dataplane_ext"],
extensions = [
"envoy.wasm.runtime.wamr",
"envoy.wasm.runtime.wavm",
],
cpe = "cpe:2.3:a:llvm:*:*",
license = "Apache-2.0",
license_url = "https://github.com/llvm/llvm-project/blob/llvmorg-{version}/llvm/LICENSE.TXT",
),
com_github_wamr = dict(
project_name = "Webassembly Micro Runtime",
project_desc = "A standalone runtime with a small footprint for WebAssembly",
project_url = "https://github.com/bytecodealliance/wasm-micro-runtime",
version = "WAMR-1.2.2",
sha256 = "d328fc1e19c54cfdb4248b861de54b62977b9b85c0a40eaaeb9cd9b628c0c788",
strip_prefix = "wasm-micro-runtime-{version}",
urls = ["https://github.com/bytecodealliance/wasm-micro-runtime/archive/{version}.tar.gz"],
release_date = "2023-05-16",
use_category = ["dataplane_ext"],
extensions = ["envoy.wasm.runtime.wamr"],
cpe = "N/A",
license = "Apache-2.0",
license_url = "https://github.com/bytecodealliance/wasm-micro-runtime/blob/{version}/LICENSE",
),
com_github_wavm_wavm = dict(
project_name = "WAVM",
project_desc = "WebAssembly Virtual Machine",
project_url = "https://wavm.github.io",
version = "3f9a150cac7faf28eab357a2c5b83d2ec740c7d9",
sha256 = "82e05ade03fdac60cf863972d3e7420a771ef4a18afad26ac442554ab0be1207",
strip_prefix = "WAVM-{version}",
urls = ["https://github.com/WAVM/WAVM/archive/{version}.tar.gz"],
release_date = "2022-05-14",
use_category = ["dataplane_ext"],
extensions = ["envoy.wasm.runtime.wavm"],
cpe = "cpe:2.3:a:webassembly_virtual_machine_project:webassembly_virtual_machine:*",
),
com_github_wasmtime = dict(
project_name = "wasmtime",
project_desc = "A standalone runtime for WebAssembly",
project_url = "https://github.com/bytecodealliance/wasmtime",
version = "9.0.3",
sha256 = "917da461249b11a3176a39573723f78c627259576d0ca10b00d6e7f7fa047081",
strip_prefix = "wasmtime-{version}",
urls = ["https://github.com/bytecodealliance/wasmtime/archive/v{version}.tar.gz"],
release_date = "2023-05-31",
use_category = ["dataplane_ext"],
extensions = ["envoy.wasm.runtime.wasmtime"],
cpe = "cpe:2.3:a:bytecodealliance:wasmtime:*",
license = "Apache-2.0",
license_url = "https://github.com/bytecodealliance/wasmtime/blob/v{version}/LICENSE",
),
com_github_wasm_c_api = dict(
project_name = "wasm-c-api",
project_desc = "WebAssembly C and C++ API",
project_url = "https://github.com/WebAssembly/wasm-c-api",