From 4ad02ace21af0e48358f6e5e5c206b5a408b8204 Mon Sep 17 00:00:00 2001 From: lockieluke Date: Sat, 13 Jan 2024 11:36:08 +0000 Subject: [PATCH] Remove debug printlns --- Cargo.lock | 2 +- Cargo.toml | 2 +- src/main.rs | 4 ---- 3 files changed, 2 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index bcb9ba6..a43a78b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -289,7 +289,7 @@ checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623" [[package]] name = "swift-precompiler" -version = "0.1.0" +version = "0.1.1" dependencies = [ "base64", "clap", diff --git a/Cargo.toml b/Cargo.toml index 26181bd..20988c3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "swift-precompiler" description = "A precompiler for Swift that allows you to use additional macros, include files, and more." -version = "0.1.0" +version = "0.1.1" edition = "2021" license = "MIT" documentation = "https://docs.rs/swift-precompiler" diff --git a/src/main.rs b/src/main.rs index 2bd1bb5..719621c 100644 --- a/src/main.rs +++ b/src/main.rs @@ -185,10 +185,6 @@ fn main() { })) .filter(|(_, path)| path.exists()) .map(|(alias, path)| (alias, path.display().to_string())) - .map(|(alias, path)| { - println!("{}", path); - (alias, path) - }) .for_each(|(alias, path)| { include_str_og_path_str = include_str_og_path_str.replace(alias, &*path); });