Merge pull request #5169 from joshtriplett/minimal-dev-deps

Remove unused dev-dependencies
This commit is contained in:
Ed Page 2023-10-10 07:42:31 -05:00 committed by GitHub
commit 5ab2bab62f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 0 additions and 17 deletions

8
Cargo.lock generated
View file

@ -486,10 +486,8 @@ dependencies = [
"rustversion", "rustversion",
"shlex", "shlex",
"snapbox", "snapbox",
"static_assertions",
"trybuild", "trybuild",
"trycmd", "trycmd",
"unic-emoji-char",
] ]
[[package]] [[package]]
@ -521,15 +519,9 @@ dependencies = [
"backtrace", "backtrace",
"clap_lex 0.5.1", "clap_lex 0.5.1",
"color-print", "color-print",
"humantime",
"rustversion",
"shlex",
"snapbox",
"static_assertions", "static_assertions",
"strsim", "strsim",
"terminal_size 0.3.0", "terminal_size 0.3.0",
"trybuild",
"trycmd",
"unic-emoji-char", "unic-emoji-char",
"unicase", "unicase",
"unicode-width", "unicode-width",

View file

@ -112,8 +112,6 @@ trycmd = { version = "0.14.18", default-features = false, features = ["color-aut
humantime = "2.1.0" humantime = "2.1.0"
snapbox = "0.4.13" snapbox = "0.4.13"
shlex = "1.2.0" shlex = "1.2.0"
static_assertions = "1.1.0"
unic-emoji-char = "0.9.0"
[[example]] [[example]]
name = "demo" name = "demo"

View file

@ -68,13 +68,6 @@ backtrace = { version = "0.3.67", optional = true }
unicode-width = { version = "0.1.9", optional = true } unicode-width = { version = "0.1.9", optional = true }
[dev-dependencies] [dev-dependencies]
trybuild = "1.0.85"
rustversion = "1.0.14"
# Cutting out `filesystem` feature
trycmd = { version = "0.14.18", default-features = false, features = ["color-auto", "diff", "examples"] }
humantime = "2.1.0"
snapbox = "0.4.13"
shlex = "1.2.0"
static_assertions = "1.1.0" static_assertions = "1.1.0"
unic-emoji-char = "0.9.0" unic-emoji-char = "0.9.0"
color-print = "0.3.5" color-print = "0.3.5"