-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
137 lines (118 loc) · 3.37 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
[package]
authors = ["Ian O'Connell <[email protected]>"]
edition = "2021"
license = "Apache-2.0"
name = "bazelfe-core"
version = "0.1.0"
build = "build.rs"
[[bin]]
name = "scala-parser"
path = "src/source_dependencies/scala/scala_parser_app.rs"
required-features = ["dev-binaries"]
[[bin]]
name = "java-parser"
path = "src/source_dependencies/java/java_parser_app.rs"
required-features = ["dev-binaries"]
[[bin]]
name = "index-table"
path = "src/index_table/load_index_table_app.rs"
required-features = ["dev-binaries"]
[[bin]]
name = "buildozer-driver"
path = "src/buildozer_driver/buildozer_driver_app.rs"
required-features = ["dev-binaries"]
[[bin]]
name = "bazel-runner-daemon-demo-app"
path = "src/bazel_runner_daemon/bazel_runner_daemon_demo_app.rs"
required-features = ["dev-binaries"]
[[bin]]
name = "bep-junit"
path = "src/bep_junit/bep_junit_app.rs"
[[bin]]
name = "jvm-indexer"
path = "src/jvm_indexer/jvm_indexer_app.rs"
[[bin]]
name = "bazel-runner"
path = "src/bazel_runner/bazel_runner_app.rs"
[dependencies]
async-channel = "2.3.1"
async-stream = "0.3.6"
async-trait = "0.1.83"
byteorder = "1.5.0"
bytes = "1.9.0"
clap = { version = "4.5.23", features = ["derive", "env"] }
ctrlc = "3.4.5"
exec = "0.3.1"
lazy_static = "1.5.0"
ignore = "0.4.20"
log = "0.4.22"
nom = "7.1.3"
openssl = { version = "0.10.68", features = ["vendored"] }
pretty_env_logger = "0.5.0"
prost = "0.12.6"
prost-types = "0.12.6"
rand = "0.8.5"
regex = "1.11.1"
serde = { version = "1.0.216", features = ["derive"] }
dynfmt = { version = "0.1.5", features = ["curly"] }
toml = "0.8.19"
time = "0.3.37"
walkdir = "2.5.0"
shellwords = "1.1.0"
zip = "0.6.6"
thiserror = "2.0.9"
fork = { version = "0.2.0", optional = true }
serde_json = "1.0.134"
stdio-override = { version = "0.1.3", optional = true }
libc = "0.2.169"
crossbeam-channel = { version = "0.5.14", optional = true }
notify = { version = "7.0.0", optional = true }
tokio-serde = { version = "0.9.0", features = ["bincode"], optional = true }
tokio-util = { version = "0.7.13", features = ["compat"] }
sha2 = "0.10.8"
flume = { version = "0.11.1", optional = true }
trim-margin = { version = "0.1.0", optional = true }
dashmap = { version = "6.1.0", optional = true }
tui = { version = "0.19.0", default_features = false, features = ["crossterm"], optional = true }
crossterm = "0.28.1"
muncher = { version = "0.7.0", optional = true }
humantime = "2.1.0"
tempfile = { version = "3.14.0", optional = true }
anyhow = "1.0.95"
tower = "0.4.13"
mio = "1.0.3"
ptyprocess = "0.4.1"
xml-rs = "0.8.22"
[build-dependencies]
vergen = { version = "8.3.2", features = [ "build", "git", "gitcl" ]}
anyhow = "1.0.95"
[dependencies.bazelfe-protos]
path = "../bazelfe-protos"
[dependencies.bazelfe-bazel-wrapper]
path = "../bazelfe-bazel-wrapper"
[dependencies.futures]
default-features = false
features = ["alloc", "bilock", "unstable"]
version = "0.3.31"
[dependencies.tokio]
features = ["full"]
version = "1.42.0"
[dependencies.tokio-stream]
features = ["net"]
version = "0.1.17"
[dependencies.tonic]
features = ["tls"]
version = "0.10.2"
[dev-dependencies]
once_cell = "1.20.2"
pinky-swear = "6.2.0"
tower = "0.4.13"
tempfile = "3.14.0"
[features]
default = []
dev-binaries = []
autotest-action = ["tui", "muncher", "tempfile", "bazelfe-daemon"]
bazelfe-daemon = ["notify", "tokio-serde", "flume", "trim-margin", "dashmap", "fork", "stdio-override"]
[lib]
name = "bazelfe_core"
path = "src/lib.rs"