summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOwen Jacobson <owen@grimoire.ca>2025-10-24 16:51:07 -0400
committerOwen Jacobson <owen@grimoire.ca>2025-10-24 16:51:07 -0400
commit9c271b27ff03cf4976326090ff54e3b5dfc04962 (patch)
tree048a758a7c089321926570fe293572dae4174a70
parent52274ba67d3b1cfef2dd6a5c08e67e68f1a6fc13 (diff)
Raise minimum Rust version to 1.90.
We've made stylistic changes that follow from Rust 1.86 through 1.89 anyways, and I'm not at all confident we aren't using APIs that only exist in those versions.
-rw-r--r--Cargo.toml15
1 files changed, 7 insertions, 8 deletions
diff --git a/Cargo.toml b/Cargo.toml
index c0648cd..a3d4594 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -2,21 +2,20 @@
name = "pilcrow"
version = "0.1.0"
edition = "2024"
-rust-version = "1.85"
+rust-version = "1.90"
authors = [
- "Owen Jacobson <owen@grimoire.ca>",
- "Kit La Touche <kit@transneptune.net>",
+ "Owen Jacobson <owen@grimoire.ca>",
+ "Kit La Touche <kit@transneptune.net>",
]
[package.metadata.deb]
maintainer = "Owen Jacobson <owen@grimoire.ca>"
maintainer-scripts = "debian"
assets = [
- # Binaries
- ["target/release/pilcrow", "/usr/bin/pilcrow", "755"],
-
- # Configuration
- ["debian/default", "/etc/default/pilcrow", "644"],
+ # Binaries
+ ["target/release/pilcrow", "/usr/bin/pilcrow", "755"],
+ # Configuration
+ ["debian/default", "/etc/default/pilcrow", "644"],
]
[package.metadata.deb.systemd-units]