We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a6373f0 commit 1a0a96eCopy full SHA for 1a0a96e
Cargo.toml
@@ -10,13 +10,21 @@ homepage = "https://github.com/ankddev/envfetch"
10
repository = "https://github.com/ankddev/envfetch"
11
12
[dependencies]
13
+# Parsing command line options
14
clap = { version = "4.5.20", features = ["derive"] }
15
+# Printing colored text
16
colored = "2.1.0"
17
+# Checking similarity of strings
18
similar-string = "1.4.3"
19
+# Running external proccesses
20
subprocess = "0.2.9"
21
+# Parsing dotenv-style files
22
dotenv-parser = "0.1.3"
23
24
[dev-dependencies]
25
+# Asserting CLI programs
26
assert_cmd = "2.0.16"
27
+# Asserting predicates
28
predicates = "3.1.2"
29
+# Asserting file system
30
assert_fs = "1.1.2"
0 commit comments