From 20f7fba16f2a201d955fb2859b7013d02730278a Mon Sep 17 00:00:00 2001 From: Keith Simmons Date: Fri, 8 Jul 2022 16:16:57 -0700 Subject: [PATCH] Move terminal scripts to scripts folder, and remove parking_lot from terminal crate Co-authored-by: mikayla.c.maki@gmail.com --- Cargo.lock | 1 - crates/terminal/Cargo.toml | 1 - crates/terminal/{ => scripts}/print256color.sh | 0 crates/terminal/{ => scripts}/truecolor.sh | 0 4 files changed, 2 deletions(-) rename crates/terminal/{ => scripts}/print256color.sh (100%) rename crates/terminal/{ => scripts}/truecolor.sh (100%) diff --git a/Cargo.lock b/Cargo.lock index 22758abe872a3078947ccfbaa008ef00558ab400..0fd0c8a212eb84638b1a4659f1f80b1a732bfb1a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4886,7 +4886,6 @@ dependencies = [ "itertools", "mio-extras", "ordered-float", - "parking_lot 0.11.2", "project", "settings", "smallvec", diff --git a/crates/terminal/Cargo.toml b/crates/terminal/Cargo.toml index bade53d5f05d0d797dd472822a2959c6df596d6d..d8f438b6f96f035ae3bb98e1486358934a279bf9 100644 --- a/crates/terminal/Cargo.toml +++ b/crates/terminal/Cargo.toml @@ -22,7 +22,6 @@ futures = "0.3" ordered-float = "2.1.1" itertools = "0.10" dirs = "4.0.0" -parking_lot = "0.11" [dev-dependencies] gpui = { path = "../gpui", features = ["test-support"] } diff --git a/crates/terminal/print256color.sh b/crates/terminal/scripts/print256color.sh similarity index 100% rename from crates/terminal/print256color.sh rename to crates/terminal/scripts/print256color.sh diff --git a/crates/terminal/truecolor.sh b/crates/terminal/scripts/truecolor.sh similarity index 100% rename from crates/terminal/truecolor.sh rename to crates/terminal/scripts/truecolor.sh