-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
66 lines (56 loc) · 1.3 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
[package]
name = "bvr"
description = "A pager designed to help you chew through logs."
categories = ["command-line-utilities"]
authors = ["An Tran <[email protected]>"]
version = "0.0.5"
edition = "2021"
license = "MIT"
keywords = ["cli", "pager"]
homepage = "https://github.com/Avarel/bvr"
repository = "https://github.com/Avarel/bvr"
readme = "README.md"
exclude = [
"HomebrewFormula",
"/.github/",
"/ci/",
"/pkg/",
"/benchsuite/",
"/scripts/",
]
[[bin]]
bench = false
path = "crates/cli/main.rs"
name = "bvr"
[workspace]
members = ["crates/core", "crates/test_gen"]
[dependencies]
bvr-core = { version = "0.0.4", path = "crates/core" }
# UI
anyhow = "1.0"
clap = { version = "4.5", features = ["cargo", "derive"] }
crossterm = { version = "0.28", features = ["use-dev-tty"] }
ratatui = { version = "0.29", features = ["serde", "palette"] }
regex = "1.10"
itoa = "1.0"
bitflags = "2.4"
lru = "0.12"
supports-color = "3.0.0"
# Clipboard
arboard = { version = "3.3", features = ["wayland-data-control"] }
# Shell usage
shellexpand = "3.1"
shlex = "1.3"
# Data storage
directories-next = "2.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
[profile.release]
strip = true
lto = true
panic = "abort"
codegen-units = 1
[profile.flamegraph]
inherits = "release"
debug = true
strip = false