From 81cb312690317d876dd684689e48cc2e9e3c7eaa Mon Sep 17 00:00:00 2001 From: Evgeny Prilepin Date: Fri, 1 May 2026 21:14:27 +0100 Subject: [PATCH] Refine crate package metadata Set the minimum supported Rust version and exclude CI/assets files from the published crate package. --- Cargo.toml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index 47babe3..030fa4c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -14,6 +14,12 @@ readme = "README.md" license = "MIT" edition = "2021" +rust-version = "1.85.0" +exclude = [ + ".github/", + ".gitignore", + "assets/", +] [badges]