Skip to content

Commit 1e440fe

Browse files
committed
remove minor version specifiers in Cargo.toml
this does not touch the libc req, but does move the libc req to a cfg gate
1 parent 30407ce commit 1e440fe

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

Cargo.toml

+7-7
Original file line numberDiff line numberDiff line change
@@ -12,22 +12,22 @@ edition = "2018"
1212

1313
[dependencies]
1414
atty = "0.2"
15-
color-eyre = "0.6.1"
16-
eyre = "0.6.7"
15+
color-eyre = "0.6"
16+
eyre = "0.6"
1717
home = "0.5"
18-
lazy_static = "1.0"
19-
libc = "0.2.104"
18+
lazy_static = "1"
2019
rustc_version = "0.4"
2120
toml = "0.5"
2221
which = { version = "4", default_features = false }
23-
shell-escape = "0.1.4"
24-
serde_json = "1.0.48"
22+
shell-escape = "0.1"
23+
serde_json = "1"
2524

2625
[target.'cfg(not(windows))'.dependencies]
2726
nix = "0.23"
27+
libc = "0.2.104"
2828

2929
[target.'cfg(windows)'.dependencies]
30-
winapi = { version = "0.3.7", features = ["winbase"] }
30+
winapi = { version = "0.3", features = ["winbase"] }
3131

3232
[profile.release]
3333
lto = true

0 commit comments

Comments
 (0)