-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
49 lines (45 loc) · 1.91 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 = "traceview"
authors = ["javaLux"]
version = "1.0.3"
edition = "2021"
description = "Tracing and viewing your files and resource landscape"
license = "MIT"
repository = "https://github.com/javaLux/traceview"
readme = "README.md"
keywords = ["file-explorer", "tui", "cli"]
categories = ["command-line-utilities"]
rust-version = "1.74.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
#Common dependencies ──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
[dependencies]
anyhow = "1.0.97"
clap = { version = "4.5.36", features = ["derive", "cargo", "string"] }
crossterm = { version = "=0.28.1", default-features = false, features = ["event-stream", "serde"] }
ratatui = "0.29.0"
tokio = { version = "1.44.2", default-features = false, features = ["macros", "time", "rt-multi-thread", "fs"] }
tokio-util = "0.7.14"
futures = "0.3.31"
path-absolutize = "3.1.1"
serde = { version = "1.0.219", default-features = false, features = ["serde_derive"] }
serde_json = "1.0.140"
log = "0.4.27"
os_info = { version = "3.10.0", default-features = false }
simplelog = "0.12.2"
chrono = "0.4.40"
sysinfo = "0.34.2"
walkdir = "2.5.0"
async-trait = "0.1.88"
file-format = {version = "0.26.0", features = ["reader"]}
dirs = "6.0.0"
confy = "0.6.1"
console = "0.15.11"
copypasta = "0.10.1"
human_bytes = {version = "0.4.3", default-features = false}
[profile.release]
# compiler optimizations for binary size
opt-level = "s"
# link optimizations -> causes a longer link time but produce better optimize code
lto = true
# strip either symbols or debug info from the final binary
strip = true