Skip to content

Commit 6c0600a

Browse files
committed
chore: Fully specify dependencies
1 parent c7e929e commit 6c0600a

File tree

8 files changed

+95
-57
lines changed

8 files changed

+95
-57
lines changed

Cargo.lock

Lines changed: 81 additions & 43 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -101,23 +101,23 @@ bench = false
101101
[dependencies]
102102
clap_derive = { path = "./clap_derive", version = "=4.1.8", optional = true }
103103
clap_lex = { path = "./clap_lex", version = "0.3.0" }
104-
bitflags = "1.2"
105-
unicase = { version = "2.6", optional = true }
106-
strsim = { version = "0.10", optional = true }
104+
bitflags = "1.2.0"
105+
unicase = { version = "2.6.0", optional = true }
106+
strsim = { version = "0.10.0", optional = true }
107107
is-terminal = { version = "0.4.1", optional = true }
108108
termcolor = { version = "1.1.1", optional = true }
109109
terminal_size = { version = "0.2.1", optional = true }
110-
backtrace = { version = "0.3", optional = true }
110+
backtrace = { version = "0.3.67", optional = true }
111111
unicode-width = { version = "0.1.9", optional = true }
112112
once_cell = { version = "1.12.0", optional = true }
113113

114114
[dev-dependencies]
115115
trybuild = "1.0.77"
116-
rustversion = "1"
116+
rustversion = "1.0.12"
117117
# Cutting out `filesystem` feature
118118
trycmd = { version = "0.14.12", default-features = false, features = ["color-auto", "diff", "examples"] }
119-
humantime = "2"
120-
snapbox = "0.4"
119+
humantime = "2.1.0"
120+
snapbox = "0.4.10"
121121
shlex = "1.1.0"
122122
static_assertions = "1.1.0"
123123
unic-emoji-char = "0.9.0"

clap_bench/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ release = false
1414
[dev-dependencies]
1515
clap = { path = "../", version = "4.0.0", default-features = false, features = ["std", "help"] }
1616
criterion = "0.4.0"
17-
lazy_static = "1"
17+
lazy_static = "1.4.0"
1818

1919
[[bench]]
2020
harness = false

clap_complete/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,13 +35,13 @@ bench = false
3535
clap = { path = "../", version = "4.1.0", default-features = false, features = ["std"] }
3636
clap_lex = { path = "../clap_lex", version = "0.3.0", optional = true }
3737
is_executable = { version = "1.0.1", optional = true }
38-
os_str_bytes = { version = "6.0", default-features = false, features = ["raw_os_str"], optional = true }
38+
os_str_bytes = { version = "6.0.0", default-features = false, features = ["raw_os_str"], optional = true }
3939
pathdiff = { version = "0.2.1", optional = true }
4040
shlex = { version = "1.1.0", optional = true }
4141
unicode-xid = { version = "0.2.2", optional = true }
4242

4343
[dev-dependencies]
44-
snapbox = { version = "0.4", features = ["diff"] }
44+
snapbox = { version = "0.4.10", features = ["diff"] }
4545
# Cutting out `filesystem` feature
4646
trycmd = { version = "0.14.12", default-features = false, features = ["color-auto", "diff", "examples"] }
4747
clap = { path = "../", version = "4.0.0", default-features = false, features = ["std", "derive", "help"] }

clap_complete_fig/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,5 +35,5 @@ clap = { path = "../", version = "4.0.0", default-features = false, features = [
3535
clap_complete = { path = "../clap_complete", version = "4.0.0" }
3636

3737
[dev-dependencies]
38-
snapbox = { version = "0.4", features = ["diff"] }
38+
snapbox = { version = "0.4.10", features = ["diff"] }
3939
clap = { path = "../", version = "4.0.0", default-features = false, features = ["std", "help"] }

clap_derive/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ syn = { version = "1.0.74", features = ["full"] }
3333
quote = "1.0.9"
3434
proc-macro2 = "1.0.42"
3535
heck = "0.4.0"
36-
proc-macro-error = "1"
36+
proc-macro-error = "1.0.4"
3737

3838
[features]
3939
default = []

clap_lex/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,4 @@ pre-release-replacements = [
3030
bench = false
3131

3232
[dependencies]
33-
os_str_bytes = { version = "6.0", default-features = false, features = ["raw_os_str"] }
33+
os_str_bytes = { version = "6.0.0", default-features = false, features = ["raw_os_str"] }

clap_mangen/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ roff = "0.2.1"
3636
clap = { path = "../", version = "4.0.0", default-features = false, features = ["std", "env"] }
3737

3838
[dev-dependencies]
39-
snapbox = { version = "0.4", features = ["diff"] }
39+
snapbox = { version = "0.4.10", features = ["diff"] }
4040
clap = { path = "../", version = "4.0.0", default-features = false, features = ["std", "help"] }
4141

4242
[features]

0 commit comments

Comments
 (0)