1
1
mirror of https://github.com/wez/wezterm.git synced 2024-09-19 18:57:59 +03:00

deps: prune some unused deps

This commit is contained in:
Wez Furlong 2022-05-19 06:44:48 -07:00
parent 2f14d640e8
commit 0e0bac2576
6 changed files with 0 additions and 24 deletions

18
Cargo.lock generated
View File

@ -670,7 +670,6 @@ dependencies = [
"portable-pty",
"promise",
"serde",
"serde_json",
"shlex",
"smol",
"termwiz",
@ -1736,12 +1735,6 @@ dependencies = [
"tiff",
]
[[package]]
name = "indoc"
version = "1.0.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "05a0bd019339e5d968b37855180087b7b9d512c5046fbd244cf8c95687927d6e"
[[package]]
name = "inflate"
version = "0.4.5"
@ -2304,7 +2297,6 @@ dependencies = [
"procinfo",
"promise",
"rangeset",
"ratelim",
"regex",
"serde",
"shell-words",
@ -4329,12 +4321,6 @@ version = "0.3.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "099b7128301d285f79ddd55b9a83d5e6b9e97c92e0ea0daebee7263e932de992"
[[package]]
name = "unicode-general-category"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "eab1e2c61f9441613aca1a1c88803bb36df292990aada6abb5133b9b532e07ec"
[[package]]
name = "unicode-linebreak"
version = "0.1.2"
@ -4809,12 +4795,10 @@ dependencies = [
"log",
"memmap2 0.2.3",
"metrics",
"mux",
"ordered-float",
"rangeset",
"termwiz",
"thiserror",
"unicode-general-category",
"unicode-segmentation",
"walkdir",
"wezterm-bidi",
@ -4980,7 +4964,6 @@ dependencies = [
"env_logger",
"filedescriptor",
"filenamegen",
"indoc",
"k9",
"libc",
"libssh-rs",
@ -5023,7 +5006,6 @@ dependencies = [
"termwiz",
"unicode-normalization",
"unicode-segmentation",
"unicode-width",
"url",
"wezterm-bidi",
"wezterm-dynamic",

View File

@ -29,7 +29,6 @@ ordered-float = { version = "3.0", features = ["serde"] }
portable-pty = { path = "../pty", features = ["serde_support"]}
promise = { path = "../promise" }
serde = {version="1.0", features = ["rc", "derive"]}
serde_json = "1.0"
shlex = "1.1"
smol = "1.2"
termwiz = { path = "../termwiz", features=["use_serde"] }

View File

@ -29,7 +29,6 @@ portable-pty = { path = "../pty", features = ["serde_support"]}
procinfo = { path = "../procinfo" }
promise = { path = "../promise" }
rangeset = { path = "../rangeset" }
ratelim= { path = "../ratelim" }
regex = "1"
serde = {version="1.0", features = ["rc", "derive"]}
shell-words = "1.1"

View File

@ -28,7 +28,6 @@ ordered-float = "3.0"
serde = {version="1.0", features = ["rc"]}
terminfo = "0.7"
unicode-segmentation = "1.8"
unicode-width = "0.1"
url = "2"
wezterm-bidi = { path = "../bidi" }
wezterm-dynamic = { path = "../wezterm-dynamic" }

View File

@ -18,13 +18,11 @@ lazy_static = "1.4"
log = "0.4"
memmap2 = "0.2"
metrics = { version="0.17", features=["std"]}
mux = { path = "../mux" }
ordered-float = "3.0"
rangeset = { path = "../rangeset" }
termwiz = { path = "../termwiz" }
thiserror = "1.0"
unicode-segmentation = "1.8"
unicode-general-category = "0.3"
walkdir = "2"
wezterm-color-types = { path = "../color-types" }
wezterm-input-types = { path = "../wezterm-input-types" }

View File

@ -40,7 +40,6 @@ async_ossl = { path = "../async_ossl" }
[dev-dependencies]
assert_fs = "1.0.4"
indoc = "1.0"
k9 = "0.11.0"
once_cell = "1.8"
predicates = "2.0"