-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
53 lines (50 loc) · 1.19 KB
/
Cargo.toml
File metadata and controls
53 lines (50 loc) · 1.19 KB
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
[package]
name = "envfetch"
version = "2.1.2"
edition = "2024"
authors = ["ANKDDEV"]
description = "Lightweight cross-platform CLI tool for working with environment variables"
readme = "README.md"
license = "MIT"
homepage = "https://github.com/ankddev/envfetch"
repository = "https://github.com/ankddev/envfetch"
[dependencies]
# Parsing command line options
clap = { version = "4.5.51", features = ["derive"] }
# Checking similarity of strings
similar-string = "1.4.3"
# Parsing dotenv-style files
dotenv-parser = "0.1.3"
# Globally setting variables
globalenv = "0.4.2"
# Parallelizing iterators
rayon = "1.11.0"
# Logging
log = "0.4.28"
env_logger = "0.11.6"
# Interactive mode with TUI
ratatui = "0.29.0"
crossterm = "0.29.0"
# Config parsing
serde = { version = "1.0.228", features = ["derive"] }
toml = "0.9.8"
# Finding directories
dirs = "6.0.0"
[dev-dependencies]
# Asserting CLI programs
assert_cmd = "2.1.1"
# Asserting predicates
predicates = "3.1.3"
# Asserting file system
assert_fs = "1.1.3"
# Creating temporary directories
tempfile = "3.23.0"
[profile.release]
opt-level = "z"
debug = true
lto = true
codegen-units = 1
panic = "abort"
incremental = true
split-debuginfo = "packed"
strip = "symbols"