-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
executable file
·49 lines (39 loc) · 1.24 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
[package]
name = "bazel-execlog-cmp"
version = "0.1.1"
authors = ["Rahul Butani <>"]
edition = "2018"
description = "CLI tool that helps compare Bazel execution logs"
documentation = "https://docs.rs/bazel-execlog-cmp"
homepage = "https://github.com/rrbutani/bazel-execlog-cmp"
repository = "https://github.com/rrbutani/bazel-execlog-cmp"
readme = "README.md"
keywords = ["bazel", "execlog"]
categories = ["command-line-utilities", "development-tools::build-utils"]
license = "MIT"
exclude = [".github"]
[badges]
github-actions = { repository = "rrbutani/bazel-execlog-cmp", workflow = "full" }
is-it-maintained-issue-resolution = { repository = "rrbutani/bazel-execlog-cmp" }
is-it-maintained-open-issues = { repository = "rrbutani/bazel-execlog-cmp" }
maintenance = { status = "actively-developed" }
[dependencies]
serde = { version = "1.0", features = ["derive"] }
serde-aux = "2.2"
serde_json = "1.0"
color-eyre = "0.5"
hex-serde = "0.1"
indicatif = { version = "0.16", features = ["rayon"] }
rayon = "1.5"
rustyline = "8.0"
prettydiff = "0.4"
fuzzy-matcher = "0.3"
[features]
default = []
# Results in higher memory usage and takes longer to load.
json-dump-command = []
[profile.release]
opt-level = 3
lto = "fat"
codegen-units = 1
incremental = false