aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--BUCK1
-rw-r--r--BUILD1
-rw-r--r--gen/build/Cargo.toml1
-rw-r--r--third-party/BUCK1
-rw-r--r--third-party/BUILD1
-rw-r--r--third-party/Cargo.lock1
6 files changed, 6 insertions, 0 deletions
diff --git a/BUCK b/BUCK
index 0505bd25..22db1556 100644
--- a/BUCK
+++ b/BUCK
@@ -53,6 +53,7 @@ rust_library(
deps = [
"//third-party:cc",
"//third-party:codespan-reporting",
+ "//third-party:lazy_static",
"//third-party:proc-macro2",
"//third-party:quote",
"//third-party:syn",
diff --git a/BUILD b/BUILD
index e551d184..782374b2 100644
--- a/BUILD
+++ b/BUILD
@@ -59,6 +59,7 @@ rust_library(
deps = [
"//third-party:cc",
"//third-party:codespan-reporting",
+ "//third-party:lazy_static",
"//third-party:proc-macro2",
"//third-party:quote",
"//third-party:syn",
diff --git a/gen/build/Cargo.toml b/gen/build/Cargo.toml
index 675261e0..3671781a 100644
--- a/gen/build/Cargo.toml
+++ b/gen/build/Cargo.toml
@@ -13,6 +13,7 @@ categories = ["development-tools::ffi"]
[dependencies]
cc = "1.0.49"
codespan-reporting = "0.9"
+lazy_static = "1.4"
proc-macro2 = { version = "1.0.17", default-features = false, features = ["span-locations"] }
quote = { version = "1.0", default-features = false }
syn = { version = "1.0.20", default-features = false, features = ["parsing", "printing", "clone-impls", "full"] }
diff --git a/third-party/BUCK b/third-party/BUCK
index e6a5611a..3b0ec99b 100644
--- a/third-party/BUCK
+++ b/third-party/BUCK
@@ -36,6 +36,7 @@ rust_library(
rust_library(
name = "lazy_static",
srcs = glob(["vendor/lazy_static-1.4.0/src/**"]),
+ visibility = ["PUBLIC"],
)
rust_library(
diff --git a/third-party/BUILD b/third-party/BUILD
index f874d07e..3477326c 100644
--- a/third-party/BUILD
+++ b/third-party/BUILD
@@ -41,6 +41,7 @@ rust_library(
rust_library(
name = "lazy_static",
srcs = glob(["vendor/lazy_static-1.4.0/src/**"]),
+ visibility = ["//visibility:public"],
)
rust_library(
diff --git a/third-party/Cargo.lock b/third-party/Cargo.lock
index 7e6a1752..d975d6e9 100644
--- a/third-party/Cargo.lock
+++ b/third-party/Cargo.lock
@@ -79,6 +79,7 @@ dependencies = [
"cc",
"codespan-reporting",
"cxx-gen",
+ "lazy_static",
"proc-macro2",
"quote",
"syn",