feat(pull): use civetweb 1.16

This commit is contained in:
Gregor Jasny
2023-04-16 12:25:19 +02:00
committed by Gregor Jasny
parent 99e4d5085e
commit 8b9cc3db8c
3 changed files with 8 additions and 6 deletions
+4 -2
View File
@@ -51,7 +51,6 @@ cc_library(
name = "libcivetweb",
srcs = [
"src/civetweb.c",
"src/response.inl",
],
hdrs = [
"include/civetweb.h",
@@ -69,8 +68,11 @@ cc_library(
"//conditions:default": ["-lrt"],
}),
textual_hdrs = [
"src/md5.inl",
"src/handle_form.inl",
"src/match.inl",
"src/md5.inl",
"src/response.inl",
"src/sort.inl",
],
visibility = ["//visibility:public"],
deps = DEPS,
+3 -3
View File
@@ -5,10 +5,10 @@ def prometheus_cpp_repositories():
maybe(
http_archive,
name = "civetweb",
strip_prefix = "civetweb-1.15",
sha256 = "90a533422944ab327a4fbb9969f0845d0dba05354f9cacce3a5005fa59f593b9",
strip_prefix = "civetweb-1.16",
sha256 = "f0e471c1bf4e7804a6cfb41ea9d13e7d623b2bcc7bc1e2a4dd54951a24d60285",
urls = [
"https://github.com/civetweb/civetweb/archive/v1.15.tar.gz",
"https://github.com/civetweb/civetweb/archive/v1.16.tar.gz",
],
build_file = "@com_github_jupp0r_prometheus_cpp//bazel:civetweb.BUILD",
)