forked from jez/as-tree
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
33 lines (26 loc) · 775 Bytes
/
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
[package]
name = "as-tree"
version = "0.12.0"
authors = ["Jake Zimmerman <zimmerman.jake@gmail.com>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[bin]]
name = "as-tree"
path = "src/main.rs"
[dependencies]
ansi_term = "0.12"
lscolors = "0.7"
atty = "0.2"
# These two options plus strip'ing the binary was measured to cut the size by
# about 173KB (-44%)
[profile.release]
lto = true
panic = "abort"
[raze]
# The WORKSPACE relative path to the Cargo.toml working directory.
workspace_path = "//third_party/cargo"
# TODO(jez) Why is this needed?
# The target to generate BUILD rules for.
target = "x86_64-apple-darwin"
# Let bazel fetch things, rather than vendor them with cargo
genmode = "Remote"