We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
--locked
1 parent 2ea6d5b commit 0e435f0Copy full SHA for 0e435f0
foreign/cpp/.gitignore
@@ -1 +1,2 @@
1
bazel-*
2
+Cargo.lock
foreign/cpp/BUILD.bazel
@@ -21,7 +21,6 @@ genrule(
21
name = "cargo_build",
22
srcs = glob(["src/**/*.rs"]) + [
23
"Cargo.toml",
24
- "Cargo.lock",
25
"build.rs",
26
],
27
outs = [
@@ -52,7 +51,7 @@ genrule(
52
51
fi
53
54
mkdir -p "$$CARGO_TARGET_DIR"
55
- env -u PWD CARGO_TARGET_DIR="$$CARGO_TARGET_DIR" "$$CARGO" build $$FLAGS --locked
+ env -u PWD CARGO_TARGET_DIR="$$CARGO_TARGET_DIR" "$$CARGO" build $$FLAGS
56
57
cp "$$CARGO_TARGET_DIR/$$PROFILE/libiggy_cpp.a" "$$OUT_LIB"
58
0 commit comments