aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authorRuben Beltran del Rio <git@r.bdr.sh>2025-01-05 00:38:55 +0100
committerRuben Beltran del Rio <git@r.bdr.sh>2025-01-05 00:38:55 +0100
commitd7fef30ac3f539975ef9edbba8e0af4a4e9ff3de (patch)
tree1e71dd131261a8f7a13d86d4dddd7d421e6a09f4 /Cargo.toml
parentd26464d12e41e8d53fca8d0e5f9cc6ac03e48f9a (diff)
Commit batch of lints to allow autofix
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml12
1 files changed, 8 insertions, 4 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 4c2c652..5a64824 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "blog"
-version = "7.0.0"
+version = "7.1.0"
edition = "2021"
license = "AGPL-3.0-or-later"
description = "Command line tool to author and manage a semi-ephemeral™ blog with a gemini archive."
@@ -8,9 +8,10 @@ homepage = "https://r.bdr.sh/blog.html"
authors = ["Rubén Beltrán del Río <blog@r.bdr.sh>"]
[dependencies]
-time = { version = "0.3.34", features = ["macros", "formatting"] }
-serde = { version = "1.0.197", features = ["derive"] }
-serde_json = "1.0.114"
+gema_texto = "1.0.0"
+time = { version = "0.3.37", features = ["macros", "formatting"] }
+serde = { version = "1.0.217", features = ["derive"] }
+serde_json = "1.0.134"
[profile.release]
strip = true
@@ -28,3 +29,6 @@ assets = [
["target/release/blog", "/usr/bin/blog", "755" ],
["man/blog.1", "/usr/share/man/man1/blog.1", "644" ],
]
+
+[lints.clippy]
+pedantic = "warn"