forked from RazrFalcon/cargo-bloat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
33 lines (29 loc) · 791 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 = "cargo-bloat"
version = "0.12.1"
authors = ["Yevhenii Reizner <razrfalcon@gmail.com>"]
description = "Find out what takes most of the space in your executable."
categories = ["development-tools::cargo-plugins"]
repository = "https://github.com/RazrFalcon/cargo-bloat"
readme = "README.md"
license = "MIT"
edition = "2018"
[profile.release]
strip = "debuginfo"
lto = "thin"
[dependencies]
json = "0.12"
memmap2 = "0.9"
multimap = { version = "0.10", default-features = false }
pico-args = { version = "0.5.0", features = ["eq-separator", "short-space-opt"]}
term_size = "0.3.1"
binfarce = "0.2.1"
pdb = "0.8.0"
[dependencies.regex]
version = "1.3"
optional = true
default-features = false
features = ["std"]
[features]
default = ["regex-filter"]
regex-filter = ["regex"]