From 0bcda8ca73a3db9ce50076c022c2d3aaa97ec7ba Mon Sep 17 00:00:00 2001 From: Lukas Fittl Date: Wed, 10 Jan 2024 06:42:17 +0000 Subject: [PATCH] Remove unused imports (#41) We were receiving warnings about these, and it doesn't appear they are needed. --- build.rs | 1 - tests/parse_plpgsql_tests.rs | 1 - 2 files changed, 2 deletions(-) diff --git a/build.rs b/build.rs index 355f525..57d3664 100644 --- a/build.rs +++ b/build.rs @@ -5,7 +5,6 @@ use fs_extra::dir::CopyOptions; use glob::glob; use std::env; use std::path::{Path, PathBuf}; -use std::process::{Command, Stdio}; static SOURCE_DIRECTORY: &str = "libpg_query"; static LIBRARY_NAME: &str = "pg_query"; diff --git a/tests/parse_plpgsql_tests.rs b/tests/parse_plpgsql_tests.rs index 208ffeb..216e7d4 100644 --- a/tests/parse_plpgsql_tests.rs +++ b/tests/parse_plpgsql_tests.rs @@ -1,6 +1,5 @@ #[macro_use] mod support; -use support::*; #[test] fn it_can_parse_a_simple_function() {