-
Notifications
You must be signed in to change notification settings - Fork 11
/
Cargo.toml
38 lines (35 loc) · 1.11 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
[package]
name = "counts"
version = "1.0.4" # Keep in sync with `VERSION` in main.rs.
authors = ["Nicholas Nethercote <n.nethercote@gmail.com>"]
license = "Unlicense"
description = "A command line tool for ad hoc profiling."
readme = "README.md"
homepage = "https://github.com/nnethercote/counts"
repository = "https://github.com/nnethercote/counts"
keywords = ["cli", "profiling"]
categories = ["command-line-utilities", "development-tools::profiling"]
edition = "2021"
rust-version = "1.59"
[dependencies]
regex-lite = "0.1"
fxhash = "0.2"
[dev-dependencies]
assert_cmd = "2.0"
predicates = "3.0"
tempfile = "3.0"
# These options make the binary a bit smaller.
# Data from v1.0.3, 2023-07-28:
# --------------------------------------
# config Linux Mac
# --------------------------------------
# base 4632976 773728
# + lto = true 2340584 676192
# + panic = abort 2313104 639032
# + strip = "debuginfo" 486936 536496
# -> strip = "symbols" 486968 464816
# --------------------------------------
[profile.release]
lto = true
panic = "abort"
strip = "symbols"