-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
84 lines (73 loc) · 2.25 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
[package]
authors = ["Ian O'Connell <ianoc@ianoc.net>"]
edition = "2021"
license = "Apache-2.0"
name = "bazelfe-bazel-wrapper"
version = "0.1.0"
[[bin]]
name = "generate-bazel-command-line"
path = "src/bazel_command_line_parser/generate_bazel_command_line_app.rs"
required-features = ["dev-binaries"]
[dependencies]
async-channel = "2.3.1"
async-stream = "0.3.6"
async-trait = "0.1.85"
bytes = "1.9.0"
ctrlc = "3.4.5"
clap = { version = "4.5.24", features = ["derive", "env"] }
lazy_static = "1.5.0"
log = "0.4.22"
prost = "0.12.6"
prost-types = "0.13.4"
rand = "0.8.5"
serde = { version = "1.0.217", features = ["derive"] }
thiserror = "2.0.9"
fork = { version = "0.2.0", optional = true }
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"
nix = { version = "0.29.0", features = ["signal"] }
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 }
tempfile = { version = "3.14.0", optional = true }
tower = "0.4.13"
mio = "1.0.3"
ptyprocess = "0.4.1"
openssl = { version = "0.10.68", features = ["vendored"] }
[build-dependencies]
[dependencies.bazelfe-protos]
path = "../bazelfe-protos"
[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_bazel_wrapper"
path = "src/lib.rs"