-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
47 lines (45 loc) · 1.13 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
[package]
name = "envfetch"
version = "2.0.0"
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.32", features = ["derive"] }
# Printing colored text
colored = "3.0.0"
# Checking similarity of strings
similar-string = "1.4.3"
# Running external proccesses
subprocess = "0.2.9"
# Parsing dotenv-style files
dotenv-parser = "0.1.3"
# Globally setting variables
globalenv = "0.4.2"
# Parallelizing iterators
rayon = "1.10.0"
# Logging
log = "0.4.26"
env_logger = "0.11.6"
# Interactive mode with TUI
ratatui = "0.29.0"
crossterm = "0.28.1"
# Config parsing
serde = { version = "1.0.219", features = ["derive"] }
toml = "0.8.20"
# Finding directories
dirs = "6.0.0"
[dev-dependencies]
# Asserting CLI programs
assert_cmd = "2.0.16"
# Asserting predicates
predicates = "3.1.3"
# Asserting file system
assert_fs = "1.1.2"
# Creating temporary directories
tempfile = "3.19.1"