commit e8ce7cf4149cda725c992566938b806724785665
parent 5b51ba3fa7c33c49e7bed66b762f193f7b39c64b
Author: alex wennerberg <alex@alexwennerberg.com>
Date: Mon, 10 Jan 2022 19:59:35 -0800
Add patch versions to cargo
library should be pinned to patch version, in case of a left-pad
situation
Diffstat:
1 file changed, 7 insertions(+), 6 deletions(-)
diff --git a/Cargo.toml b/Cargo.toml
@@ -9,20 +9,21 @@ default = []
# Justifying all my dependencies
# cargo tree | wc -l => 15
+# Diminishing returns to cut this further
[dependencies]
# I am lazy
-anyhow = "1.0"
+anyhow = "1.0.52"
# HTML templating, "least bad" solution IMO
-horrorshow = "0.8"
+horrorshow = "0.8.4"
# Largest dependency, required for email parsing
-mailparse = "0.13"
+mailparse = "0.13.7"
# Small, effective dependencies, little benefit to vendoring
-linkify = "0.8"
-urlencoding = "2.1"
+linkify = "0.8.0"
+urlencoding = "2.1.0"
nanohtml2text = "0.1.1"
# Should be in stdlib
-once_cell = "1.9"
+once_cell = "1.9.0"