aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
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"