From 4f8b44bab1a003c698a0e74323d0ff6c83391954 Mon Sep 17 00:00:00 2001 From: vodofrede Date: Sun, 24 Oct 2021 18:31:17 +0200 Subject: [PATCH] accidentally left in debug code, bumped minor --- Cargo.lock | 2 +- Cargo.toml | 2 +- src/lib.rs | 2 -- 3 files changed, 2 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 1ad503e..d0e67c6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4,4 +4,4 @@ version = 3 [[package]] name = "eyes" -version = "1.1.1" +version = "1.1.2" diff --git a/Cargo.toml b/Cargo.toml index a8a8ca4..6f9e89c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "eyes" -version = "1.1.1" +version = "1.1.2" edition = "2018" description = "A simpler way to parse using human-readable templates" license="BSD-3-Clause" diff --git a/src/lib.rs b/src/lib.rs index 0a457bb..a7f6fe2 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -25,8 +25,6 @@ impl<'a> Parser<'a> { right = right.trim_start_matches(|c: char| c.is_whitespace()); } - println!("left: '{}', right: '{}'", left, right); - // if the right side of the split doesn't contain the pattern, // we don't have to check if we can expand the match if right.contains(pat) {