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:53:04 -0400
commit58e6496558a01052537c5272169aea3e79ccbc8e (patch)
treebcab21c5cfd7ccf510b31fa1ef5c13dad8a6693a
parent342d4720576369f83d88b0dbde6ca5d58aebd252 (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 5b861a8..04c3f6f 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]