Skip to content
This repository was archived by the owner on Jun 7, 2022. It is now read-only.

Commit 088b1dc

Browse files
committed
Moved the protos away from the core logic. Its regenerated in the build so i believe is making builds slower
1 parent bcf22b4 commit 088b1dc

File tree

3,423 files changed

+4288
-265
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

3,423 files changed

+4288
-265
lines changed

Cargo.lock

+26-23
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+5-98
Original file line numberDiff line numberDiff line change
@@ -1,99 +1,6 @@
1-
[package]
2-
name = "bazel-fe"
3-
version = "0.1.0"
4-
authors = ["Ian O'Connell <[email protected]>"]
5-
edition = "2018"
6-
license = "Apache-2.0"
7-
8-
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
9-
10-
[dependencies]
11-
tui = "0.10.0"
12-
termion = "1.5.5"
13-
rand = "0.7.3"
14-
argh = "0.1.3"
15-
nom = "5.1.2"
16-
clap = "3.0.0-beta.2"
17-
regex = "1.3.9"
18-
lazy_static = "1.4.0"
19-
futures = { version = "0.3", default-features = false, features = ["alloc"] }
20-
tonic = { version = "0.3.1", features = ["tls"] }
21-
prost = "0.6"
22-
tokio = { version = "0.2", features = ["rt-threaded", "time", "stream", "fs", "macros", "uds", "io-util", "process", "io-std"] }
23-
# Required for wellknown types
24-
prost-types = "0.6"
25-
pretty_env_logger = "0.4"
26-
log = "0.4"
27-
async-stream = "0.3.0"
28-
bytes = "0.5.6"
29-
ctrlc = "3.1.6"
30-
async-trait = "0.1.41"
31-
env_logger = "0.7.1"
32-
dashmap = "3.11.10"
33-
exec = "0.3.1"
34-
zip = "0.5.8"
35-
36-
[dev-dependencies]
37-
tempfile = "3.1.0"
38-
pinky-swear = "4.0.0"
39-
tower = "0.3"
40-
41-
[features]
42-
dev-binaries=[]
43-
44-
[build-dependencies]
45-
tonic-build = { version = "0.2.0", features = ["prost"] }
46-
47-
48-
[lib]
49-
name = "bazelfe"
50-
path = "src/lib.rs"
51-
52-
53-
[[bin]]
54-
name = "bazel-fe-bin"
55-
path = "src/bin.rs"
56-
required-features = ["dev-binaries"]
57-
58-
59-
[[bin]]
60-
name = "scala-parser"
61-
path = "src/source_dependencies/scala/scala_parser_app.rs"
62-
required-features = ["dev-binaries"]
63-
64-
[[bin]]
65-
name = "java-parser"
66-
path = "src/source_dependencies/java/java_parser_app.rs"
67-
required-features = ["dev-binaries"]
68-
69-
70-
[[bin]]
71-
name = "index-table"
72-
path = "src/index_table/load_index_table_app.rs"
73-
required-features = ["dev-binaries"]
74-
75-
76-
[[bin]]
77-
name = "build-events"
78-
path = "src/build_events/build_events_app.rs"
79-
required-features = ["dev-binaries"]
80-
81-
[[bin]]
82-
name = "bazel-runner"
83-
path = "src/bazel_runner/bazel_runner_app.rs"
84-
85-
86-
[[bin]]
87-
name = "buildozer-driver"
88-
path = "src/buildozer_driver/buildozer_driver_app.rs"
89-
required-features = ["dev-binaries"]
90-
91-
[[bin]]
92-
name = "jvm-indexer"
93-
path = "src/jvm_indexer/jvm_indexer_app.rs"
94-
95-
[[bin]]
96-
name = "popularity-parser-app"
97-
path = "src/jvm_indexer/popularity_parser_app.rs"
98-
required-features = ["dev-binaries"]
1+
[workspace]
992

3+
members = [
4+
"bazelfe-protos",
5+
"bazelfe-core",
6+
]

0 commit comments

Comments
 (0)