ascii_domain

Domains whose labels are only ASCII.
git clone https://git.philomathiclife.com/repos/ascii_domain
Log | Files | Refs | README

commit 9d56f2cd671ffe0be824fab9d5646fa3b84fed75
parent 563f72d5b1f234181c1378c91db4f5ea542e10ce
Author: Zack Newman <zack@philomathiclife.com>
Date:   Thu,  3 Apr 2025 13:54:38 -0600

msrv

Diffstat:
MCargo.toml | 8++++----
Msrc/lib.rs | 1+
2 files changed, 5 insertions(+), 4 deletions(-)

diff --git a/Cargo.toml b/Cargo.toml @@ -9,18 +9,18 @@ license = "MIT OR Apache-2.0" name = "ascii_domain" readme = "README.md" repository = "https://git.philomathiclife.com/repos/ascii_domain/" -rust-version = "1.85.0" -version = "0.6.3" +rust-version = "1.86.0" +version = "0.6.4" [package.metadata.docs.rs] all-features = true rustdoc-args = ["--cfg", "docsrs"] [dependencies] -serde = { version = "1.0.218", default-features = false, features = ["alloc"], optional = true } +serde = { version = "1.0.219", default-features = false, features = ["alloc"], optional = true } [dev-dependencies] -serde_json = { version = "1.0.139", default-features = false, features = ["alloc"] } +serde_json = { version = "1.0.140", default-features = false, features = ["alloc"] } ### FEATURES ################################################################# diff --git a/src/lib.rs b/src/lib.rs @@ -50,6 +50,7 @@ clippy::min_ident_chars, clippy::missing_trait_methods, clippy::question_mark_used, + clippy::return_and_then, clippy::single_char_lifetime_names, reason = "noisy, opinionated, and likely doesn't prevent bugs or improve APIs" )]