Verified Commit 837e6bb0 authored by Michael Usachenko's avatar Michael Usachenko Committed by GitLab
Browse files

chore: few changes to speed up local compilation

parent f8cc8571
Loading
Loading
Loading
Loading

.gitdiffignore

0 → 100644
+2 −0
Original line number Diff line number Diff line
:(exclude)Cargo.lock
:(exclude)package-lock.json
+0 −1
Original line number Diff line number Diff line
@@ -2730,7 +2730,6 @@ dependencies = [
 "clickhouse",
 "clickhouse-client",
 "config",
 "datafusion",
 "futures",
 "health-check",
 "indexer",
+1 −0
Original line number Diff line number Diff line
fn main() {
    println!("cargo:rerun-if-changed=build.rs");
    #[cfg(feature = "regenerate-protos")]
    regenerate_protos();
}
+0 −1
Original line number Diff line number Diff line
@@ -26,7 +26,6 @@ indexer = { path = "../indexer" }
ontology = { path = "../ontology" }
prost = { workspace = true }
prost-types = { workspace = true }
datafusion = { workspace = true }
reqwest = { workspace = true }
rustls = { workspace = true }
parking_lot = { workspace = true }
+1 −0
Original line number Diff line number Diff line
fn main() {
    println!("cargo:rerun-if-changed=build.rs");
    #[cfg(feature = "regenerate-protos")]
    regenerate_protos();
}
Loading